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

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

Issue 2857853005: [CrOS Tether] Create TetherDisconnector, which disconnects from active tethering sessions. (Closed)
Patch Set: hansberry@ 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/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",
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 "keep_alive_scheduler.cc", 43 "keep_alive_scheduler.cc",
44 "keep_alive_scheduler.h", 44 "keep_alive_scheduler.h",
45 "local_device_data_provider.cc", 45 "local_device_data_provider.cc",
46 "local_device_data_provider.h", 46 "local_device_data_provider.h",
47 "message_transfer_operation.cc", 47 "message_transfer_operation.cc",
48 "message_transfer_operation.h", 48 "message_transfer_operation.h",
49 "message_wrapper.cc", 49 "message_wrapper.cc",
50 "message_wrapper.h", 50 "message_wrapper.h",
51 "network_configuration_remover.cc", 51 "network_configuration_remover.cc",
52 "network_configuration_remover.h", 52 "network_configuration_remover.h",
53 "network_connection_handler_tether_delegate.cc",
54 "network_connection_handler_tether_delegate.h",
53 "notification_presenter.h", 55 "notification_presenter.h",
54 "pref_names.cc", 56 "pref_names.cc",
55 "pref_names.h", 57 "pref_names.h",
56 "tether_connector.cc", 58 "tether_connector.cc",
57 "tether_connector.h", 59 "tether_connector.h",
60 "tether_disconnector.cc",
61 "tether_disconnector.h",
58 "tether_host_fetcher.cc", 62 "tether_host_fetcher.cc",
59 "tether_host_fetcher.h", 63 "tether_host_fetcher.h",
60 "tether_host_response_recorder.cc", 64 "tether_host_response_recorder.cc",
61 "tether_host_response_recorder.h", 65 "tether_host_response_recorder.h",
62 "tether_network_disconnection_handler.cc", 66 "tether_network_disconnection_handler.cc",
63 "tether_network_disconnection_handler.h", 67 "tether_network_disconnection_handler.h",
64 "wifi_hotspot_connector.cc", 68 "wifi_hotspot_connector.cc",
65 "wifi_hotspot_connector.h", 69 "wifi_hotspot_connector.h",
66 ] 70 ]
67 71
(...skipping 19 matching lines...) Expand all
87 static_library("test_support") { 91 static_library("test_support") {
88 testonly = true 92 testonly = true
89 93
90 sources = [ 94 sources = [
91 "fake_active_host.cc", 95 "fake_active_host.cc",
92 "fake_active_host.h", 96 "fake_active_host.h",
93 "fake_ble_connection_manager.cc", 97 "fake_ble_connection_manager.cc",
94 "fake_ble_connection_manager.h", 98 "fake_ble_connection_manager.h",
95 "fake_host_scan_cache.cc", 99 "fake_host_scan_cache.cc",
96 "fake_host_scan_cache.h", 100 "fake_host_scan_cache.h",
101 "fake_network_configuration_remover.cc",
102 "fake_network_configuration_remover.h",
97 "fake_notification_presenter.cc", 103 "fake_notification_presenter.cc",
98 "fake_notification_presenter.h", 104 "fake_notification_presenter.h",
99 "fake_tether_host_fetcher.cc", 105 "fake_tether_host_fetcher.cc",
100 "fake_tether_host_fetcher.h", 106 "fake_tether_host_fetcher.h",
101 "fake_wifi_hotspot_connector.cc", 107 "fake_wifi_hotspot_connector.cc",
102 "fake_wifi_hotspot_connector.h", 108 "fake_wifi_hotspot_connector.h",
103 "mock_host_scan_device_prioritizer.cc", 109 "mock_host_scan_device_prioritizer.cc",
104 "mock_host_scan_device_prioritizer.h", 110 "mock_host_scan_device_prioritizer.h",
105 "mock_local_device_data_provider.cc", 111 "mock_local_device_data_provider.cc",
106 "mock_local_device_data_provider.h", 112 "mock_local_device_data_provider.h",
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 "host_scan_scheduler_unittest.cc", 145 "host_scan_scheduler_unittest.cc",
140 "host_scanner_operation_unittest.cc", 146 "host_scanner_operation_unittest.cc",
141 "host_scanner_unittest.cc", 147 "host_scanner_unittest.cc",
142 "initializer_unittest.cc", 148 "initializer_unittest.cc",
143 "keep_alive_operation_unittest.cc", 149 "keep_alive_operation_unittest.cc",
144 "keep_alive_scheduler_unittest.cc", 150 "keep_alive_scheduler_unittest.cc",
145 "local_device_data_provider_unittest.cc", 151 "local_device_data_provider_unittest.cc",
146 "message_transfer_operation_unittest.cc", 152 "message_transfer_operation_unittest.cc",
147 "message_wrapper_unittest.cc", 153 "message_wrapper_unittest.cc",
148 "network_configuration_remover_unittest.cc", 154 "network_configuration_remover_unittest.cc",
155 "network_connection_handler_tether_delegate_unittest.cc",
149 "tether_connector_unittest.cc", 156 "tether_connector_unittest.cc",
157 "tether_disconnector_unittest.cc",
150 "tether_host_fetcher_unittest.cc", 158 "tether_host_fetcher_unittest.cc",
151 "tether_host_response_recorder_unittest.cc", 159 "tether_host_response_recorder_unittest.cc",
152 "tether_network_disconnection_handler_unittest.cc", 160 "tether_network_disconnection_handler_unittest.cc",
153 "wifi_hotspot_connector_unittest.cc", 161 "wifi_hotspot_connector_unittest.cc",
154 ] 162 ]
155 163
156 deps = [ 164 deps = [
157 ":test_support", 165 ":test_support",
158 ":tether", 166 ":tether",
159 "//base/test:test_support", 167 "//base/test:test_support",
160 "//chromeos", 168 "//chromeos",
161 "//chromeos:test_support", 169 "//chromeos:test_support",
162 "//chromeos/components/tether/proto", 170 "//chromeos/components/tether/proto",
163 "//components/cryptauth", 171 "//components/cryptauth",
164 "//components/cryptauth:test_support", 172 "//components/cryptauth:test_support",
165 "//components/cryptauth/ble", 173 "//components/cryptauth/ble",
166 "//components/prefs:test_support", 174 "//components/prefs:test_support",
167 "//components/signin/core/browser:test_support", 175 "//components/signin/core/browser:test_support",
168 "//device/bluetooth", 176 "//device/bluetooth",
169 "//device/bluetooth:mocks", 177 "//device/bluetooth:mocks",
170 "//testing/gmock", 178 "//testing/gmock",
171 "//testing/gtest", 179 "//testing/gtest",
172 "//ui/message_center:test_support", 180 "//ui/message_center:test_support",
173 ] 181 ]
174 } 182 }
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