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 "active_host.cc", | 9 "active_host.cc", |
10 "active_host.h", | 10 "active_host.h", |
11 "active_host_network_state_updater.cc", | 11 "active_host_network_state_updater.cc", |
12 "active_host_network_state_updater.h", | 12 "active_host_network_state_updater.h", |
13 "ble_advertisement_device_queue.cc", | 13 "ble_advertisement_device_queue.cc", |
14 "ble_advertisement_device_queue.h", | 14 "ble_advertisement_device_queue.h", |
15 "ble_advertiser.cc", | 15 "ble_advertiser.cc", |
16 "ble_advertiser.h", | 16 "ble_advertiser.h", |
17 "ble_connection_manager.cc", | 17 "ble_connection_manager.cc", |
18 "ble_connection_manager.h", | 18 "ble_connection_manager.h", |
19 "ble_constants.cc", | 19 "ble_constants.cc", |
20 "ble_constants.h", | 20 "ble_constants.h", |
21 "ble_scanner.cc", | 21 "ble_scanner.cc", |
22 "ble_scanner.h", | 22 "ble_scanner.h", |
23 "connect_tethering_operation.cc", | 23 "connect_tethering_operation.cc", |
24 "connect_tethering_operation.h", | 24 "connect_tethering_operation.h", |
25 "device_id_tether_network_guid_map.cc", | 25 "device_id_tether_network_guid_map.cc", |
26 "device_id_tether_network_guid_map.h", | 26 "device_id_tether_network_guid_map.h", |
27 "host_scan_cache.cc", | |
28 "host_scan_cache.h", | |
29 "host_scan_device_prioritizer.cc", | 27 "host_scan_device_prioritizer.cc", |
30 "host_scan_device_prioritizer.h", | 28 "host_scan_device_prioritizer.h", |
31 "host_scan_scheduler.cc", | 29 "host_scan_scheduler.cc", |
32 "host_scan_scheduler.h", | 30 "host_scan_scheduler.h", |
33 "host_scanner.cc", | 31 "host_scanner.cc", |
34 "host_scanner.h", | 32 "host_scanner.h", |
35 "host_scanner_operation.cc", | 33 "host_scanner_operation.cc", |
36 "host_scanner_operation.h", | 34 "host_scanner_operation.h", |
37 "initializer.cc", | 35 "initializer.cc", |
38 "initializer.h", | 36 "initializer.h", |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 } | 83 } |
86 | 84 |
87 static_library("test_support") { | 85 static_library("test_support") { |
88 testonly = true | 86 testonly = true |
89 | 87 |
90 sources = [ | 88 sources = [ |
91 "fake_active_host.cc", | 89 "fake_active_host.cc", |
92 "fake_active_host.h", | 90 "fake_active_host.h", |
93 "fake_ble_connection_manager.cc", | 91 "fake_ble_connection_manager.cc", |
94 "fake_ble_connection_manager.h", | 92 "fake_ble_connection_manager.h", |
95 "fake_host_scan_cache.cc", | |
96 "fake_host_scan_cache.h", | |
97 "fake_notification_presenter.cc", | 93 "fake_notification_presenter.cc", |
98 "fake_notification_presenter.h", | 94 "fake_notification_presenter.h", |
99 "fake_tether_host_fetcher.cc", | 95 "fake_tether_host_fetcher.cc", |
100 "fake_tether_host_fetcher.h", | 96 "fake_tether_host_fetcher.h", |
101 "fake_wifi_hotspot_connector.cc", | 97 "fake_wifi_hotspot_connector.cc", |
102 "fake_wifi_hotspot_connector.h", | 98 "fake_wifi_hotspot_connector.h", |
103 "mock_host_scan_device_prioritizer.cc", | 99 "mock_host_scan_device_prioritizer.cc", |
104 "mock_host_scan_device_prioritizer.h", | 100 "mock_host_scan_device_prioritizer.h", |
105 "mock_local_device_data_provider.cc", | 101 "mock_local_device_data_provider.cc", |
106 "mock_local_device_data_provider.h", | 102 "mock_local_device_data_provider.h", |
(...skipping 19 matching lines...) Expand all Loading... |
126 testonly = true | 122 testonly = true |
127 | 123 |
128 sources = [ | 124 sources = [ |
129 "active_host_network_state_updater_unittest.cc", | 125 "active_host_network_state_updater_unittest.cc", |
130 "active_host_unittest.cc", | 126 "active_host_unittest.cc", |
131 "ble_advertisement_device_queue_unittest.cc", | 127 "ble_advertisement_device_queue_unittest.cc", |
132 "ble_advertiser_unittest.cc", | 128 "ble_advertiser_unittest.cc", |
133 "ble_connection_manager_unittest.cc", | 129 "ble_connection_manager_unittest.cc", |
134 "ble_scanner_unittest.cc", | 130 "ble_scanner_unittest.cc", |
135 "connect_tethering_operation_unittest.cc", | 131 "connect_tethering_operation_unittest.cc", |
136 "host_scan_cache_unittest.cc", | |
137 "host_scan_device_prioritizer_unittest.cc", | 132 "host_scan_device_prioritizer_unittest.cc", |
138 "host_scan_scheduler_unittest.cc", | 133 "host_scan_scheduler_unittest.cc", |
139 "host_scanner_operation_unittest.cc", | 134 "host_scanner_operation_unittest.cc", |
140 "host_scanner_unittest.cc", | 135 "host_scanner_unittest.cc", |
141 "initializer_unittest.cc", | 136 "initializer_unittest.cc", |
142 "keep_alive_operation_unittest.cc", | 137 "keep_alive_operation_unittest.cc", |
143 "keep_alive_scheduler_unittest.cc", | 138 "keep_alive_scheduler_unittest.cc", |
144 "local_device_data_provider_unittest.cc", | 139 "local_device_data_provider_unittest.cc", |
145 "message_transfer_operation_unittest.cc", | 140 "message_transfer_operation_unittest.cc", |
146 "message_wrapper_unittest.cc", | 141 "message_wrapper_unittest.cc", |
(...skipping 17 matching lines...) Expand all Loading... |
164 "//components/cryptauth/ble", | 159 "//components/cryptauth/ble", |
165 "//components/prefs:test_support", | 160 "//components/prefs:test_support", |
166 "//components/signin/core/browser:test_support", | 161 "//components/signin/core/browser:test_support", |
167 "//device/bluetooth", | 162 "//device/bluetooth", |
168 "//device/bluetooth:mocks", | 163 "//device/bluetooth:mocks", |
169 "//testing/gmock", | 164 "//testing/gmock", |
170 "//testing/gtest", | 165 "//testing/gtest", |
171 "//ui/message_center:test_support", | 166 "//ui/message_center:test_support", |
172 ] | 167 ] |
173 } | 168 } |
OLD | NEW |