blob: 8097a4be9814a611fc045b82a72bc230cddefadd [file] [log] [blame]
Will Harris29c5ff152024-01-25 01:54:051# Copyright 2024 The Chromium Authors
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5assert(is_win)
6
7source_set("os_crypt") {
8 sources = [
9 "app_bound_encryption_metrics_win.cc",
10 "app_bound_encryption_metrics_win.h",
11 "app_bound_encryption_win.cc",
12 "app_bound_encryption_win.h",
13 ]
14
15 deps = [
16 "//base",
17 "//chrome/install_static:install_static_util",
18 "//components/prefs:prefs",
19 "//content/public/browser",
20 ]
21
22 public_deps = [ "//chrome/elevation_service:public_headers" ]
23}
24
25source_set("browser_tests") {
26 testonly = true
27 sources = [ "app_bound_encryption_win_browsertest.cc" ]
28
29 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ]
30
31 deps = [
32 ":os_crypt",
33 "//base",
34 "//chrome/install_static/test:test_support",
35 "//chrome/installer/util:constants",
36 "//chrome/test:test_support",
37 "//components/version_info:version_info",
38 "//content/test:test_support",
39 ]
40}