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

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

Issue 2945643002: [CrOS Tether] Sort Tether network lists. (Closed)
Patch Set: stevenjb@ comments. 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/host_scan_device_prioritizer.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",
(...skipping 12 matching lines...) Expand all
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", 27 "device_status_util.cc",
28 "device_status_util.h", 28 "device_status_util.h",
29 "disconnect_tethering_operation.cc", 29 "disconnect_tethering_operation.cc",
30 "disconnect_tethering_operation.h", 30 "disconnect_tethering_operation.h",
31 "host_scan_cache.cc", 31 "host_scan_cache.cc",
32 "host_scan_cache.h", 32 "host_scan_cache.h",
33 "host_scan_device_prioritizer.cc",
34 "host_scan_device_prioritizer.h", 33 "host_scan_device_prioritizer.h",
34 "host_scan_device_prioritizer_impl.cc",
35 "host_scan_device_prioritizer_impl.h",
35 "host_scan_scheduler.cc", 36 "host_scan_scheduler.cc",
36 "host_scan_scheduler.h", 37 "host_scan_scheduler.h",
37 "host_scanner.cc", 38 "host_scanner.cc",
38 "host_scanner.h", 39 "host_scanner.h",
39 "host_scanner_operation.cc", 40 "host_scanner_operation.cc",
40 "host_scanner_operation.h", 41 "host_scanner_operation.h",
41 "initializer.cc", 42 "initializer.cc",
42 "initializer.h", 43 "initializer.h",
43 "keep_alive_operation.cc", 44 "keep_alive_operation.cc",
44 "keep_alive_operation.h", 45 "keep_alive_operation.h",
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 "fake_host_scan_cache.cc", 104 "fake_host_scan_cache.cc",
104 "fake_host_scan_cache.h", 105 "fake_host_scan_cache.h",
105 "fake_network_configuration_remover.cc", 106 "fake_network_configuration_remover.cc",
106 "fake_network_configuration_remover.h", 107 "fake_network_configuration_remover.h",
107 "fake_notification_presenter.cc", 108 "fake_notification_presenter.cc",
108 "fake_notification_presenter.h", 109 "fake_notification_presenter.h",
109 "fake_tether_host_fetcher.cc", 110 "fake_tether_host_fetcher.cc",
110 "fake_tether_host_fetcher.h", 111 "fake_tether_host_fetcher.h",
111 "fake_wifi_hotspot_connector.cc", 112 "fake_wifi_hotspot_connector.cc",
112 "fake_wifi_hotspot_connector.h", 113 "fake_wifi_hotspot_connector.h",
113 "mock_host_scan_device_prioritizer.cc",
114 "mock_host_scan_device_prioritizer.h",
115 "mock_local_device_data_provider.cc", 114 "mock_local_device_data_provider.cc",
116 "mock_local_device_data_provider.h", 115 "mock_local_device_data_provider.h",
117 "mock_tether_host_response_recorder.cc", 116 "mock_tether_host_response_recorder.cc",
118 "mock_tether_host_response_recorder.h", 117 "mock_tether_host_response_recorder.h",
119 "proto_test_util.cc", 118 "proto_test_util.cc",
120 "proto_test_util.h", 119 "proto_test_util.h",
121 ] 120 ]
122 121
123 public_deps = [ 122 public_deps = [
124 ":tether", 123 ":tether",
(...skipping 17 matching lines...) Expand all
142 "active_host_network_state_updater_unittest.cc", 141 "active_host_network_state_updater_unittest.cc",
143 "active_host_unittest.cc", 142 "active_host_unittest.cc",
144 "ble_advertisement_device_queue_unittest.cc", 143 "ble_advertisement_device_queue_unittest.cc",
145 "ble_advertiser_unittest.cc", 144 "ble_advertiser_unittest.cc",
146 "ble_connection_manager_unittest.cc", 145 "ble_connection_manager_unittest.cc",
147 "ble_scanner_unittest.cc", 146 "ble_scanner_unittest.cc",
148 "connect_tethering_operation_unittest.cc", 147 "connect_tethering_operation_unittest.cc",
149 "device_status_util_unittest.cc", 148 "device_status_util_unittest.cc",
150 "disconnect_tethering_operation_unittest.cc", 149 "disconnect_tethering_operation_unittest.cc",
151 "host_scan_cache_unittest.cc", 150 "host_scan_cache_unittest.cc",
152 "host_scan_device_prioritizer_unittest.cc", 151 "host_scan_device_prioritizer_impl_unittest.cc",
153 "host_scan_scheduler_unittest.cc", 152 "host_scan_scheduler_unittest.cc",
154 "host_scanner_operation_unittest.cc", 153 "host_scanner_operation_unittest.cc",
155 "host_scanner_unittest.cc", 154 "host_scanner_unittest.cc",
156 "initializer_unittest.cc", 155 "initializer_unittest.cc",
157 "keep_alive_operation_unittest.cc", 156 "keep_alive_operation_unittest.cc",
158 "keep_alive_scheduler_unittest.cc", 157 "keep_alive_scheduler_unittest.cc",
159 "local_device_data_provider_unittest.cc", 158 "local_device_data_provider_unittest.cc",
160 "message_transfer_operation_unittest.cc", 159 "message_transfer_operation_unittest.cc",
161 "message_wrapper_unittest.cc", 160 "message_wrapper_unittest.cc",
162 "network_configuration_remover_unittest.cc", 161 "network_configuration_remover_unittest.cc",
(...skipping 18 matching lines...) Expand all
181 "//components/cryptauth/ble", 180 "//components/cryptauth/ble",
182 "//components/prefs:test_support", 181 "//components/prefs:test_support",
183 "//components/signin/core/browser:test_support", 182 "//components/signin/core/browser:test_support",
184 "//device/bluetooth", 183 "//device/bluetooth",
185 "//device/bluetooth:mocks", 184 "//device/bluetooth:mocks",
186 "//testing/gmock", 185 "//testing/gmock",
187 "//testing/gtest", 186 "//testing/gtest",
188 "//ui/message_center:test_support", 187 "//ui/message_center:test_support",
189 ] 188 ]
190 } 189 }
OLDNEW
« no previous file with comments | « no previous file | chromeos/components/tether/host_scan_device_prioritizer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698