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

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

Issue 2861603002: [CrOS Tether] Create DisconnectTetheringOperation, which sends a DisconnectTetheringRequest to a re… (Closed)
Patch Set: 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/disconnect_tethering_operation.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 "disconnect_tethering_operation.cc",
28 "disconnect_tethering_operation.h",
27 "host_scan_cache.cc", 29 "host_scan_cache.cc",
28 "host_scan_cache.h", 30 "host_scan_cache.h",
29 "host_scan_device_prioritizer.cc", 31 "host_scan_device_prioritizer.cc",
30 "host_scan_device_prioritizer.h", 32 "host_scan_device_prioritizer.h",
31 "host_scan_scheduler.cc", 33 "host_scan_scheduler.cc",
32 "host_scan_scheduler.h", 34 "host_scan_scheduler.h",
33 "host_scanner.cc", 35 "host_scanner.cc",
34 "host_scanner.h", 36 "host_scanner.h",
35 "host_scanner_operation.cc", 37 "host_scanner_operation.cc",
36 "host_scanner_operation.h", 38 "host_scanner_operation.h",
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 testonly = true 128 testonly = true
127 129
128 sources = [ 130 sources = [
129 "active_host_network_state_updater_unittest.cc", 131 "active_host_network_state_updater_unittest.cc",
130 "active_host_unittest.cc", 132 "active_host_unittest.cc",
131 "ble_advertisement_device_queue_unittest.cc", 133 "ble_advertisement_device_queue_unittest.cc",
132 "ble_advertiser_unittest.cc", 134 "ble_advertiser_unittest.cc",
133 "ble_connection_manager_unittest.cc", 135 "ble_connection_manager_unittest.cc",
134 "ble_scanner_unittest.cc", 136 "ble_scanner_unittest.cc",
135 "connect_tethering_operation_unittest.cc", 137 "connect_tethering_operation_unittest.cc",
138 "disconnect_tethering_operation_unittest.cc",
136 "host_scan_cache_unittest.cc", 139 "host_scan_cache_unittest.cc",
137 "host_scan_device_prioritizer_unittest.cc", 140 "host_scan_device_prioritizer_unittest.cc",
138 "host_scan_scheduler_unittest.cc", 141 "host_scan_scheduler_unittest.cc",
139 "host_scanner_operation_unittest.cc", 142 "host_scanner_operation_unittest.cc",
140 "host_scanner_unittest.cc", 143 "host_scanner_unittest.cc",
141 "initializer_unittest.cc", 144 "initializer_unittest.cc",
142 "keep_alive_operation_unittest.cc", 145 "keep_alive_operation_unittest.cc",
143 "keep_alive_scheduler_unittest.cc", 146 "keep_alive_scheduler_unittest.cc",
144 "local_device_data_provider_unittest.cc", 147 "local_device_data_provider_unittest.cc",
145 "message_transfer_operation_unittest.cc", 148 "message_transfer_operation_unittest.cc",
(...skipping 18 matching lines...) Expand all
164 "//components/cryptauth/ble", 167 "//components/cryptauth/ble",
165 "//components/prefs:test_support", 168 "//components/prefs:test_support",
166 "//components/signin/core/browser:test_support", 169 "//components/signin/core/browser:test_support",
167 "//device/bluetooth", 170 "//device/bluetooth",
168 "//device/bluetooth:mocks", 171 "//device/bluetooth:mocks",
169 "//testing/gmock", 172 "//testing/gmock",
170 "//testing/gtest", 173 "//testing/gtest",
171 "//ui/message_center:test_support", 174 "//ui/message_center:test_support",
172 ] 175 ]
173 } 176 }
OLDNEW
« no previous file with comments | « no previous file | chromeos/components/tether/disconnect_tethering_operation.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698