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