OLD | NEW |
1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 assert(is_chromeos, "Non-ChromeOS builds cannot depend on //chromeos") | 5 assert(is_chromeos, "Non-ChromeOS builds cannot depend on //chromeos") |
6 | 6 |
7 static_library("tether") { | 7 static_library("tether") { |
8 sources = [ | 8 sources = [ |
9 "host_scan_scheduler.cc", | 9 "host_scan_scheduler.cc", |
10 "host_scan_scheduler.h", | 10 "host_scan_scheduler.h", |
11 "host_scanner.cc", | 11 "host_scanner.cc", |
12 "host_scanner.h", | 12 "host_scanner.h", |
13 "initializer.cc", | 13 "initializer.cc", |
14 "initializer.h", | 14 "initializer.h", |
| 15 "local_device_data_provider.cc", |
| 16 "local_device_data_provider.h", |
15 ] | 17 ] |
16 | 18 |
17 deps = [ | 19 deps = [ |
18 "//base", | 20 "//base", |
19 "//chromeos", | 21 "//chromeos", |
20 "//components/cryptauth", | 22 "//components/cryptauth", |
21 "//components/proximity_auth/logging", | 23 "//components/proximity_auth/logging", |
22 ] | 24 ] |
23 | 25 |
24 public_deps = [ | 26 public_deps = [ |
(...skipping 14 matching lines...) Expand all Loading... |
39 "//base", | 41 "//base", |
40 "//testing/gmock", | 42 "//testing/gmock", |
41 ] | 43 ] |
42 } | 44 } |
43 | 45 |
44 source_set("unit_tests") { | 46 source_set("unit_tests") { |
45 testonly = true | 47 testonly = true |
46 | 48 |
47 sources = [ | 49 sources = [ |
48 "host_scan_scheduler_unittest.cc", | 50 "host_scan_scheduler_unittest.cc", |
| 51 "local_device_data_provider_unittest.cc", |
49 ] | 52 ] |
50 | 53 |
51 deps = [ | 54 deps = [ |
52 ":test_support", | 55 ":test_support", |
53 ":tether", | 56 ":tether", |
54 "//base/test:test_support", | 57 "//base/test:test_support", |
55 "//chromeos", | 58 "//chromeos", |
56 "//components/cryptauth", | 59 "//components/cryptauth", |
57 "//testing/gmock", | 60 "//testing/gmock", |
58 "//testing/gtest", | 61 "//testing/gtest", |
59 ] | 62 ] |
60 } | 63 } |
OLD | NEW |