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

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

Issue 2792483002: [CrOS Tether] Create TetherConnector, which attempts to connect to a nearby tether host. (Closed)
Patch Set: hansberry@ comment. Created 3 years, 8 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
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",
26 "device_id_tether_network_guid_map.h",
25 "host_scan_device_prioritizer.cc", 27 "host_scan_device_prioritizer.cc",
26 "host_scan_device_prioritizer.h", 28 "host_scan_device_prioritizer.h",
27 "host_scan_scheduler.cc", 29 "host_scan_scheduler.cc",
28 "host_scan_scheduler.h", 30 "host_scan_scheduler.h",
29 "host_scanner.cc", 31 "host_scanner.cc",
30 "host_scanner.h", 32 "host_scanner.h",
31 "host_scanner_operation.cc", 33 "host_scanner_operation.cc",
32 "host_scanner_operation.h", 34 "host_scanner_operation.h",
33 "initializer.cc", 35 "initializer.cc",
34 "initializer.h", 36 "initializer.h",
35 "keep_alive_operation.cc", 37 "keep_alive_operation.cc",
36 "keep_alive_operation.h", 38 "keep_alive_operation.h",
37 "keep_alive_scheduler.cc", 39 "keep_alive_scheduler.cc",
38 "keep_alive_scheduler.h", 40 "keep_alive_scheduler.h",
39 "local_device_data_provider.cc", 41 "local_device_data_provider.cc",
40 "local_device_data_provider.h", 42 "local_device_data_provider.h",
41 "message_transfer_operation.cc", 43 "message_transfer_operation.cc",
42 "message_transfer_operation.h", 44 "message_transfer_operation.h",
43 "message_wrapper.cc", 45 "message_wrapper.cc",
44 "message_wrapper.h", 46 "message_wrapper.h",
45 "notification_presenter.h", 47 "notification_presenter.h",
46 "pref_names.cc", 48 "pref_names.cc",
47 "pref_names.h", 49 "pref_names.h",
50 "tether_connector.cc",
51 "tether_connector.h",
48 "tether_host_fetcher.cc", 52 "tether_host_fetcher.cc",
49 "tether_host_fetcher.h", 53 "tether_host_fetcher.h",
50 "wifi_hotspot_connector.cc", 54 "wifi_hotspot_connector.cc",
51 "wifi_hotspot_connector.h", 55 "wifi_hotspot_connector.h",
52 ] 56 ]
53 57
54 deps = [ 58 deps = [
55 "//base", 59 "//base",
56 "//chromeos", 60 "//chromeos",
57 "//chromeos/components/tether/proto", 61 "//chromeos/components/tether/proto",
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 "connect_tethering_operation_unittest.cc", 120 "connect_tethering_operation_unittest.cc",
117 "host_scan_device_prioritizer_unittest.cc", 121 "host_scan_device_prioritizer_unittest.cc",
118 "host_scan_scheduler_unittest.cc", 122 "host_scan_scheduler_unittest.cc",
119 "host_scanner_operation_unittest.cc", 123 "host_scanner_operation_unittest.cc",
120 "host_scanner_unittest.cc", 124 "host_scanner_unittest.cc",
121 "keep_alive_operation_unittest.cc", 125 "keep_alive_operation_unittest.cc",
122 "keep_alive_scheduler_unittest.cc", 126 "keep_alive_scheduler_unittest.cc",
123 "local_device_data_provider_unittest.cc", 127 "local_device_data_provider_unittest.cc",
124 "message_transfer_operation_unittest.cc", 128 "message_transfer_operation_unittest.cc",
125 "message_wrapper_unittest.cc", 129 "message_wrapper_unittest.cc",
130 "tether_connector_unittest.cc",
126 "tether_host_fetcher_unittest.cc", 131 "tether_host_fetcher_unittest.cc",
127 "wifi_hotspot_connector_unittest.cc", 132 "wifi_hotspot_connector_unittest.cc",
128 ] 133 ]
129 134
130 deps = [ 135 deps = [
131 ":test_support", 136 ":test_support",
132 ":tether", 137 ":tether",
133 "//base/test:test_support", 138 "//base/test:test_support",
134 "//chromeos", 139 "//chromeos",
135 "//chromeos:test_support", 140 "//chromeos:test_support",
136 "//chromeos/components/tether/proto", 141 "//chromeos/components/tether/proto",
137 "//components/cryptauth", 142 "//components/cryptauth",
138 "//components/cryptauth:test_support", 143 "//components/cryptauth:test_support",
139 "//components/cryptauth/ble", 144 "//components/cryptauth/ble",
140 "//components/prefs:test_support", 145 "//components/prefs:test_support",
141 "//device/bluetooth", 146 "//device/bluetooth",
142 "//device/bluetooth:mocks", 147 "//device/bluetooth:mocks",
143 "//testing/gmock", 148 "//testing/gmock",
144 "//testing/gtest", 149 "//testing/gtest",
145 "//ui/message_center:test_support", 150 "//ui/message_center:test_support",
146 ] 151 ]
147 } 152 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698