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", | 9 "ble_advertisement_device_queue.cc", |
10 "ble_advertisement_device_queue.h", | 10 "ble_advertisement_device_queue.h", |
11 "ble_advertiser.cc", | 11 "ble_advertiser.cc", |
12 "ble_advertiser.h", | 12 "ble_advertiser.h", |
| 13 "ble_connection_manager.cc", |
| 14 "ble_connection_manager.h", |
13 "ble_constants.cc", | 15 "ble_constants.cc", |
14 "ble_constants.h", | 16 "ble_constants.h", |
15 "ble_scanner.cc", | 17 "ble_scanner.cc", |
16 "ble_scanner.h", | 18 "ble_scanner.h", |
17 "host_scan_scheduler.cc", | 19 "host_scan_scheduler.cc", |
18 "host_scan_scheduler.h", | 20 "host_scan_scheduler.h", |
19 "host_scanner.cc", | 21 "host_scanner.cc", |
20 "host_scanner.h", | 22 "host_scanner.h", |
21 "initializer.cc", | 23 "initializer.cc", |
22 "initializer.h", | 24 "initializer.h", |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 "//testing/gmock", | 58 "//testing/gmock", |
57 ] | 59 ] |
58 } | 60 } |
59 | 61 |
60 source_set("unit_tests") { | 62 source_set("unit_tests") { |
61 testonly = true | 63 testonly = true |
62 | 64 |
63 sources = [ | 65 sources = [ |
64 "ble_advertisement_device_queue_unittest.cc", | 66 "ble_advertisement_device_queue_unittest.cc", |
65 "ble_advertiser_unittest.cc", | 67 "ble_advertiser_unittest.cc", |
| 68 "ble_connection_manager_unittest.cc", |
66 "ble_scanner_unittest.cc", | 69 "ble_scanner_unittest.cc", |
67 "host_scan_scheduler_unittest.cc", | 70 "host_scan_scheduler_unittest.cc", |
68 "local_device_data_provider_unittest.cc", | 71 "local_device_data_provider_unittest.cc", |
69 ] | 72 ] |
70 | 73 |
71 deps = [ | 74 deps = [ |
72 ":test_support", | 75 ":test_support", |
73 ":tether", | 76 ":tether", |
74 "//base/test:test_support", | 77 "//base/test:test_support", |
75 "//chromeos", | 78 "//chromeos", |
76 "//chromeos/components/tether/proto", | 79 "//chromeos/components/tether/proto", |
77 "//components/cryptauth", | 80 "//components/cryptauth", |
78 "//components/cryptauth:test_support", | 81 "//components/cryptauth:test_support", |
79 "//device/bluetooth", | 82 "//device/bluetooth", |
80 "//device/bluetooth:mocks", | 83 "//device/bluetooth:mocks", |
81 "//testing/gmock", | 84 "//testing/gmock", |
82 "//testing/gtest", | 85 "//testing/gtest", |
83 ] | 86 ] |
84 } | 87 } |
OLD | NEW |