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

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

Issue 2917813002: [CrOS Tether] Move the DeviceStatus normalizer code from HostScanner into its own file. (Closed)
Patch Set: Fix spelling error typo. Created 3 years, 6 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/device_status_util.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 "device_status_util.cc",
28 "device_status_util.h",
27 "disconnect_tethering_operation.cc", 29 "disconnect_tethering_operation.cc",
28 "disconnect_tethering_operation.h", 30 "disconnect_tethering_operation.h",
29 "host_scan_cache.cc", 31 "host_scan_cache.cc",
30 "host_scan_cache.h", 32 "host_scan_cache.h",
31 "host_scan_device_prioritizer.cc", 33 "host_scan_device_prioritizer.cc",
32 "host_scan_device_prioritizer.h", 34 "host_scan_device_prioritizer.h",
33 "host_scan_scheduler.cc", 35 "host_scan_scheduler.cc",
34 "host_scan_scheduler.h", 36 "host_scan_scheduler.h",
35 "host_scanner.cc", 37 "host_scanner.cc",
36 "host_scanner.h", 38 "host_scanner.h",
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 testonly = true 134 testonly = true
133 135
134 sources = [ 136 sources = [
135 "active_host_network_state_updater_unittest.cc", 137 "active_host_network_state_updater_unittest.cc",
136 "active_host_unittest.cc", 138 "active_host_unittest.cc",
137 "ble_advertisement_device_queue_unittest.cc", 139 "ble_advertisement_device_queue_unittest.cc",
138 "ble_advertiser_unittest.cc", 140 "ble_advertiser_unittest.cc",
139 "ble_connection_manager_unittest.cc", 141 "ble_connection_manager_unittest.cc",
140 "ble_scanner_unittest.cc", 142 "ble_scanner_unittest.cc",
141 "connect_tethering_operation_unittest.cc", 143 "connect_tethering_operation_unittest.cc",
144 "device_status_util_unittest.cc",
142 "disconnect_tethering_operation_unittest.cc", 145 "disconnect_tethering_operation_unittest.cc",
143 "host_scan_cache_unittest.cc", 146 "host_scan_cache_unittest.cc",
144 "host_scan_device_prioritizer_unittest.cc", 147 "host_scan_device_prioritizer_unittest.cc",
145 "host_scan_scheduler_unittest.cc", 148 "host_scan_scheduler_unittest.cc",
146 "host_scanner_operation_unittest.cc", 149 "host_scanner_operation_unittest.cc",
147 "host_scanner_unittest.cc", 150 "host_scanner_unittest.cc",
148 "initializer_unittest.cc", 151 "initializer_unittest.cc",
149 "keep_alive_operation_unittest.cc", 152 "keep_alive_operation_unittest.cc",
150 "keep_alive_scheduler_unittest.cc", 153 "keep_alive_scheduler_unittest.cc",
151 "local_device_data_provider_unittest.cc", 154 "local_device_data_provider_unittest.cc",
(...skipping 21 matching lines...) Expand all
173 "//components/cryptauth/ble", 176 "//components/cryptauth/ble",
174 "//components/prefs:test_support", 177 "//components/prefs:test_support",
175 "//components/signin/core/browser:test_support", 178 "//components/signin/core/browser:test_support",
176 "//device/bluetooth", 179 "//device/bluetooth",
177 "//device/bluetooth:mocks", 180 "//device/bluetooth:mocks",
178 "//testing/gmock", 181 "//testing/gmock",
179 "//testing/gtest", 182 "//testing/gtest",
180 "//ui/message_center:test_support", 183 "//ui/message_center:test_support",
181 ] 184 ]
182 } 185 }
OLDNEW
« no previous file with comments | « no previous file | chromeos/components/tether/device_status_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698