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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
108 "fake_host_scan_cache.cc", | 108 "fake_host_scan_cache.cc", |
109 "fake_host_scan_cache.h", | 109 "fake_host_scan_cache.h", |
110 "fake_network_configuration_remover.cc", | 110 "fake_network_configuration_remover.cc", |
111 "fake_network_configuration_remover.h", | 111 "fake_network_configuration_remover.h", |
112 "fake_notification_presenter.cc", | 112 "fake_notification_presenter.cc", |
113 "fake_notification_presenter.h", | 113 "fake_notification_presenter.h", |
114 "fake_tether_host_fetcher.cc", | 114 "fake_tether_host_fetcher.cc", |
115 "fake_tether_host_fetcher.h", | 115 "fake_tether_host_fetcher.h", |
116 "fake_wifi_hotspot_connector.cc", | 116 "fake_wifi_hotspot_connector.cc", |
117 "fake_wifi_hotspot_connector.h", | 117 "fake_wifi_hotspot_connector.h", |
| 118 "mock_host_connection_metrics_logger.cc", |
| 119 "mock_host_connection_metrics_logger.h", |
118 "mock_tether_host_response_recorder.cc", | 120 "mock_tether_host_response_recorder.cc", |
119 "mock_tether_host_response_recorder.h", | 121 "mock_tether_host_response_recorder.h", |
120 "proto_test_util.cc", | 122 "proto_test_util.cc", |
121 "proto_test_util.h", | 123 "proto_test_util.h", |
122 ] | 124 ] |
123 | 125 |
124 public_deps = [ | 126 public_deps = [ |
125 ":tether", | 127 ":tether", |
126 ] | 128 ] |
127 | 129 |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
182 "//components/cryptauth/ble", | 184 "//components/cryptauth/ble", |
183 "//components/prefs:test_support", | 185 "//components/prefs:test_support", |
184 "//components/signin/core/browser:test_support", | 186 "//components/signin/core/browser:test_support", |
185 "//device/bluetooth", | 187 "//device/bluetooth", |
186 "//device/bluetooth:mocks", | 188 "//device/bluetooth:mocks", |
187 "//testing/gmock", | 189 "//testing/gmock", |
188 "//testing/gtest", | 190 "//testing/gtest", |
189 "//ui/message_center:test_support", | 191 "//ui/message_center:test_support", |
190 ] | 192 ] |
191 } | 193 } |
OLD | NEW |