OLD | NEW |
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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 "network_configuration_remover.h", | 53 "network_configuration_remover.h", |
54 "network_connection_handler_tether_delegate.cc", | 54 "network_connection_handler_tether_delegate.cc", |
55 "network_connection_handler_tether_delegate.h", | 55 "network_connection_handler_tether_delegate.h", |
56 "notification_presenter.h", | 56 "notification_presenter.h", |
57 "pref_names.cc", | 57 "pref_names.cc", |
58 "pref_names.h", | 58 "pref_names.h", |
59 "tether_connector.cc", | 59 "tether_connector.cc", |
60 "tether_connector.h", | 60 "tether_connector.h", |
61 "tether_disconnector.cc", | 61 "tether_disconnector.cc", |
62 "tether_disconnector.h", | 62 "tether_disconnector.h", |
| 63 "tether_disconnector_impl.cc", |
| 64 "tether_disconnector_impl.h", |
63 "tether_host_fetcher.cc", | 65 "tether_host_fetcher.cc", |
64 "tether_host_fetcher.h", | 66 "tether_host_fetcher.h", |
65 "tether_host_response_recorder.cc", | 67 "tether_host_response_recorder.cc", |
66 "tether_host_response_recorder.h", | 68 "tether_host_response_recorder.h", |
67 "tether_network_disconnection_handler.cc", | 69 "tether_network_disconnection_handler.cc", |
68 "tether_network_disconnection_handler.h", | 70 "tether_network_disconnection_handler.h", |
69 "timer_factory.cc", | 71 "timer_factory.cc", |
70 "timer_factory.h", | 72 "timer_factory.h", |
71 "wifi_hotspot_connector.cc", | 73 "wifi_hotspot_connector.cc", |
72 "wifi_hotspot_connector.h", | 74 "wifi_hotspot_connector.h", |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
149 "host_scanner_operation_unittest.cc", | 151 "host_scanner_operation_unittest.cc", |
150 "host_scanner_unittest.cc", | 152 "host_scanner_unittest.cc", |
151 "initializer_unittest.cc", | 153 "initializer_unittest.cc", |
152 "keep_alive_operation_unittest.cc", | 154 "keep_alive_operation_unittest.cc", |
153 "keep_alive_scheduler_unittest.cc", | 155 "keep_alive_scheduler_unittest.cc", |
154 "message_transfer_operation_unittest.cc", | 156 "message_transfer_operation_unittest.cc", |
155 "message_wrapper_unittest.cc", | 157 "message_wrapper_unittest.cc", |
156 "network_configuration_remover_unittest.cc", | 158 "network_configuration_remover_unittest.cc", |
157 "network_connection_handler_tether_delegate_unittest.cc", | 159 "network_connection_handler_tether_delegate_unittest.cc", |
158 "tether_connector_unittest.cc", | 160 "tether_connector_unittest.cc", |
159 "tether_disconnector_unittest.cc", | 161 "tether_disconnector_impl_unittest.cc", |
160 "tether_host_fetcher_unittest.cc", | 162 "tether_host_fetcher_unittest.cc", |
161 "tether_host_response_recorder_unittest.cc", | 163 "tether_host_response_recorder_unittest.cc", |
162 "tether_network_disconnection_handler_unittest.cc", | 164 "tether_network_disconnection_handler_unittest.cc", |
163 "wifi_hotspot_connector_unittest.cc", | 165 "wifi_hotspot_connector_unittest.cc", |
164 ] | 166 ] |
165 | 167 |
166 deps = [ | 168 deps = [ |
167 ":test_support", | 169 ":test_support", |
168 ":tether", | 170 ":tether", |
169 "//base/test:test_support", | 171 "//base/test:test_support", |
170 "//chromeos", | 172 "//chromeos", |
171 "//chromeos:test_support", | 173 "//chromeos:test_support", |
172 "//chromeos/components/tether/proto", | 174 "//chromeos/components/tether/proto", |
173 "//components/cryptauth", | 175 "//components/cryptauth", |
174 "//components/cryptauth:test_support", | 176 "//components/cryptauth:test_support", |
175 "//components/cryptauth/ble", | 177 "//components/cryptauth/ble", |
176 "//components/prefs:test_support", | 178 "//components/prefs:test_support", |
177 "//components/signin/core/browser:test_support", | 179 "//components/signin/core/browser:test_support", |
178 "//device/bluetooth", | 180 "//device/bluetooth", |
179 "//device/bluetooth:mocks", | 181 "//device/bluetooth:mocks", |
180 "//testing/gmock", | 182 "//testing/gmock", |
181 "//testing/gtest", | 183 "//testing/gtest", |
182 "//ui/message_center:test_support", | 184 "//ui/message_center:test_support", |
183 ] | 185 ] |
184 } | 186 } |
OLD | NEW |