Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(183)

Side by Side Diff: chromeos/components/tether/BUILD.gn

Issue 2852693004: [CrOS Tether] Create HostScanCache, which caches scan results and inserts them into the network sta… (Closed)
Patch Set: stevenjb@ comments. Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chromeos/components/tether/fake_host_scan_cache.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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",
27 "host_scan_device_prioritizer.cc", 29 "host_scan_device_prioritizer.cc",
28 "host_scan_device_prioritizer.h", 30 "host_scan_device_prioritizer.h",
29 "host_scan_scheduler.cc", 31 "host_scan_scheduler.cc",
30 "host_scan_scheduler.h", 32 "host_scan_scheduler.h",
31 "host_scanner.cc", 33 "host_scanner.cc",
32 "host_scanner.h", 34 "host_scanner.h",
33 "host_scanner_operation.cc", 35 "host_scanner_operation.cc",
34 "host_scanner_operation.h", 36 "host_scanner_operation.h",
35 "initializer.cc", 37 "initializer.cc",
36 "initializer.h", 38 "initializer.h",
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 } 85 }
84 86
85 static_library("test_support") { 87 static_library("test_support") {
86 testonly = true 88 testonly = true
87 89
88 sources = [ 90 sources = [
89 "fake_active_host.cc", 91 "fake_active_host.cc",
90 "fake_active_host.h", 92 "fake_active_host.h",
91 "fake_ble_connection_manager.cc", 93 "fake_ble_connection_manager.cc",
92 "fake_ble_connection_manager.h", 94 "fake_ble_connection_manager.h",
95 "fake_host_scan_cache.cc",
96 "fake_host_scan_cache.h",
93 "fake_notification_presenter.cc", 97 "fake_notification_presenter.cc",
94 "fake_notification_presenter.h", 98 "fake_notification_presenter.h",
95 "fake_tether_host_fetcher.cc", 99 "fake_tether_host_fetcher.cc",
96 "fake_tether_host_fetcher.h", 100 "fake_tether_host_fetcher.h",
97 "fake_wifi_hotspot_connector.cc", 101 "fake_wifi_hotspot_connector.cc",
98 "fake_wifi_hotspot_connector.h", 102 "fake_wifi_hotspot_connector.h",
99 "mock_host_scan_device_prioritizer.cc", 103 "mock_host_scan_device_prioritizer.cc",
100 "mock_host_scan_device_prioritizer.h", 104 "mock_host_scan_device_prioritizer.h",
101 "mock_local_device_data_provider.cc", 105 "mock_local_device_data_provider.cc",
102 "mock_local_device_data_provider.h", 106 "mock_local_device_data_provider.h",
(...skipping 19 matching lines...) Expand all
122 testonly = true 126 testonly = true
123 127
124 sources = [ 128 sources = [
125 "active_host_network_state_updater_unittest.cc", 129 "active_host_network_state_updater_unittest.cc",
126 "active_host_unittest.cc", 130 "active_host_unittest.cc",
127 "ble_advertisement_device_queue_unittest.cc", 131 "ble_advertisement_device_queue_unittest.cc",
128 "ble_advertiser_unittest.cc", 132 "ble_advertiser_unittest.cc",
129 "ble_connection_manager_unittest.cc", 133 "ble_connection_manager_unittest.cc",
130 "ble_scanner_unittest.cc", 134 "ble_scanner_unittest.cc",
131 "connect_tethering_operation_unittest.cc", 135 "connect_tethering_operation_unittest.cc",
136 "host_scan_cache_unittest.cc",
132 "host_scan_device_prioritizer_unittest.cc", 137 "host_scan_device_prioritizer_unittest.cc",
133 "host_scan_scheduler_unittest.cc", 138 "host_scan_scheduler_unittest.cc",
134 "host_scanner_operation_unittest.cc", 139 "host_scanner_operation_unittest.cc",
135 "host_scanner_unittest.cc", 140 "host_scanner_unittest.cc",
136 "initializer_unittest.cc", 141 "initializer_unittest.cc",
137 "keep_alive_operation_unittest.cc", 142 "keep_alive_operation_unittest.cc",
138 "keep_alive_scheduler_unittest.cc", 143 "keep_alive_scheduler_unittest.cc",
139 "local_device_data_provider_unittest.cc", 144 "local_device_data_provider_unittest.cc",
140 "message_transfer_operation_unittest.cc", 145 "message_transfer_operation_unittest.cc",
141 "message_wrapper_unittest.cc", 146 "message_wrapper_unittest.cc",
(...skipping 17 matching lines...) Expand all
159 "//components/cryptauth/ble", 164 "//components/cryptauth/ble",
160 "//components/prefs:test_support", 165 "//components/prefs:test_support",
161 "//components/signin/core/browser:test_support", 166 "//components/signin/core/browser:test_support",
162 "//device/bluetooth", 167 "//device/bluetooth",
163 "//device/bluetooth:mocks", 168 "//device/bluetooth:mocks",
164 "//testing/gmock", 169 "//testing/gmock",
165 "//testing/gtest", 170 "//testing/gtest",
166 "//ui/message_center:test_support", 171 "//ui/message_center:test_support",
167 ] 172 ]
168 } 173 }
OLDNEW
« no previous file with comments | « no previous file | chromeos/components/tether/fake_host_scan_cache.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698