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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 } | 77 } |
78 | 78 |
79 static_library("test_support") { | 79 static_library("test_support") { |
80 testonly = true | 80 testonly = true |
81 | 81 |
82 sources = [ | 82 sources = [ |
83 "fake_active_host.cc", | 83 "fake_active_host.cc", |
84 "fake_active_host.h", | 84 "fake_active_host.h", |
85 "fake_ble_connection_manager.cc", | 85 "fake_ble_connection_manager.cc", |
86 "fake_ble_connection_manager.h", | 86 "fake_ble_connection_manager.h", |
| 87 "fake_managed_network_configuration_handler.cc", |
| 88 "fake_managed_network_configuration_handler.h", |
87 "fake_notification_presenter.cc", | 89 "fake_notification_presenter.cc", |
88 "fake_notification_presenter.h", | 90 "fake_notification_presenter.h", |
89 "fake_tether_host_fetcher.cc", | 91 "fake_tether_host_fetcher.cc", |
90 "fake_tether_host_fetcher.h", | 92 "fake_tether_host_fetcher.h", |
91 "fake_wifi_hotspot_connector.cc", | 93 "fake_wifi_hotspot_connector.cc", |
92 "fake_wifi_hotspot_connector.h", | 94 "fake_wifi_hotspot_connector.h", |
93 "mock_host_scan_device_prioritizer.cc", | 95 "mock_host_scan_device_prioritizer.cc", |
94 "mock_host_scan_device_prioritizer.h", | 96 "mock_host_scan_device_prioritizer.h", |
95 "mock_local_device_data_provider.cc", | 97 "mock_local_device_data_provider.cc", |
96 "mock_local_device_data_provider.h", | 98 "mock_local_device_data_provider.h", |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
149 "//components/cryptauth/ble", | 151 "//components/cryptauth/ble", |
150 "//components/prefs:test_support", | 152 "//components/prefs:test_support", |
151 "//components/signin/core/browser:test_support", | 153 "//components/signin/core/browser:test_support", |
152 "//device/bluetooth", | 154 "//device/bluetooth", |
153 "//device/bluetooth:mocks", | 155 "//device/bluetooth:mocks", |
154 "//testing/gmock", | 156 "//testing/gmock", |
155 "//testing/gtest", | 157 "//testing/gtest", |
156 "//ui/message_center:test_support", | 158 "//ui/message_center:test_support", |
157 ] | 159 ] |
158 } | 160 } |
OLD | NEW |