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 "ble_advertisement_device_queue.cc", |
| 10 "ble_advertisement_device_queue.h", |
9 "host_scan_scheduler.cc", | 11 "host_scan_scheduler.cc", |
10 "host_scan_scheduler.h", | 12 "host_scan_scheduler.h", |
11 "host_scanner.cc", | 13 "host_scanner.cc", |
12 "host_scanner.h", | 14 "host_scanner.h", |
13 "initializer.cc", | 15 "initializer.cc", |
14 "initializer.h", | 16 "initializer.h", |
15 ] | 17 ] |
16 | 18 |
17 deps = [ | 19 deps = [ |
18 "//base", | 20 "//base", |
(...skipping 19 matching lines...) Expand all Loading... |
38 deps = [ | 40 deps = [ |
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 = [ |
| 50 "ble_advertisement_device_queue_unittest.cc", |
48 "host_scan_scheduler_unittest.cc", | 51 "host_scan_scheduler_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", |
| 60 "//components/cryptauth:test_support", |
57 "//testing/gmock", | 61 "//testing/gmock", |
58 "//testing/gtest", | 62 "//testing/gtest", |
59 ] | 63 ] |
60 } | 64 } |
OLD | NEW |