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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
109 "fake_tether_host_fetcher.cc", | 109 "fake_tether_host_fetcher.cc", |
110 "fake_tether_host_fetcher.h", | 110 "fake_tether_host_fetcher.h", |
111 "fake_wifi_hotspot_connector.cc", | 111 "fake_wifi_hotspot_connector.cc", |
112 "fake_wifi_hotspot_connector.h", | 112 "fake_wifi_hotspot_connector.h", |
113 "mock_host_scan_device_prioritizer.cc", | 113 "mock_host_scan_device_prioritizer.cc", |
114 "mock_host_scan_device_prioritizer.h", | 114 "mock_host_scan_device_prioritizer.h", |
115 "mock_local_device_data_provider.cc", | 115 "mock_local_device_data_provider.cc", |
116 "mock_local_device_data_provider.h", | 116 "mock_local_device_data_provider.h", |
117 "mock_tether_host_response_recorder.cc", | 117 "mock_tether_host_response_recorder.cc", |
118 "mock_tether_host_response_recorder.h", | 118 "mock_tether_host_response_recorder.h", |
| 119 "proto_test_util.cc", |
| 120 "proto_test_util.h", |
119 ] | 121 ] |
120 | 122 |
121 public_deps = [ | 123 public_deps = [ |
122 ":tether", | 124 ":tether", |
123 ] | 125 ] |
124 | 126 |
125 deps = [ | 127 deps = [ |
126 "//base", | 128 "//base", |
127 "//chromeos", | 129 "//chromeos", |
128 "//components/cryptauth", | 130 "//components/cryptauth", |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
178 "//components/cryptauth/ble", | 180 "//components/cryptauth/ble", |
179 "//components/prefs:test_support", | 181 "//components/prefs:test_support", |
180 "//components/signin/core/browser:test_support", | 182 "//components/signin/core/browser:test_support", |
181 "//device/bluetooth", | 183 "//device/bluetooth", |
182 "//device/bluetooth:mocks", | 184 "//device/bluetooth:mocks", |
183 "//testing/gmock", | 185 "//testing/gmock", |
184 "//testing/gtest", | 186 "//testing/gtest", |
185 "//ui/message_center:test_support", | 187 "//ui/message_center:test_support", |
186 ] | 188 ] |
187 } | 189 } |
OLD | NEW |