| 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 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 "active_host_unittest.cc", | 115 "active_host_unittest.cc", |
| 116 "ble_advertisement_device_queue_unittest.cc", | 116 "ble_advertisement_device_queue_unittest.cc", |
| 117 "ble_advertiser_unittest.cc", | 117 "ble_advertiser_unittest.cc", |
| 118 "ble_connection_manager_unittest.cc", | 118 "ble_connection_manager_unittest.cc", |
| 119 "ble_scanner_unittest.cc", | 119 "ble_scanner_unittest.cc", |
| 120 "connect_tethering_operation_unittest.cc", | 120 "connect_tethering_operation_unittest.cc", |
| 121 "host_scan_device_prioritizer_unittest.cc", | 121 "host_scan_device_prioritizer_unittest.cc", |
| 122 "host_scan_scheduler_unittest.cc", | 122 "host_scan_scheduler_unittest.cc", |
| 123 "host_scanner_operation_unittest.cc", | 123 "host_scanner_operation_unittest.cc", |
| 124 "host_scanner_unittest.cc", | 124 "host_scanner_unittest.cc", |
| 125 "initializer_unittest.cc", |
| 125 "keep_alive_operation_unittest.cc", | 126 "keep_alive_operation_unittest.cc", |
| 126 "keep_alive_scheduler_unittest.cc", | 127 "keep_alive_scheduler_unittest.cc", |
| 127 "local_device_data_provider_unittest.cc", | 128 "local_device_data_provider_unittest.cc", |
| 128 "message_transfer_operation_unittest.cc", | 129 "message_transfer_operation_unittest.cc", |
| 129 "message_wrapper_unittest.cc", | 130 "message_wrapper_unittest.cc", |
| 130 "tether_connector_unittest.cc", | 131 "tether_connector_unittest.cc", |
| 131 "tether_host_fetcher_unittest.cc", | 132 "tether_host_fetcher_unittest.cc", |
| 132 "wifi_hotspot_connector_unittest.cc", | 133 "wifi_hotspot_connector_unittest.cc", |
| 133 ] | 134 ] |
| 134 | 135 |
| 135 deps = [ | 136 deps = [ |
| 136 ":test_support", | 137 ":test_support", |
| 137 ":tether", | 138 ":tether", |
| 138 "//base/test:test_support", | 139 "//base/test:test_support", |
| 139 "//chromeos", | 140 "//chromeos", |
| 140 "//chromeos:test_support", | 141 "//chromeos:test_support", |
| 141 "//chromeos/components/tether/proto", | 142 "//chromeos/components/tether/proto", |
| 142 "//components/cryptauth", | 143 "//components/cryptauth", |
| 143 "//components/cryptauth:test_support", | 144 "//components/cryptauth:test_support", |
| 144 "//components/cryptauth/ble", | 145 "//components/cryptauth/ble", |
| 145 "//components/prefs:test_support", | 146 "//components/prefs:test_support", |
| 147 "//components/signin/core/browser:test_support", |
| 146 "//device/bluetooth", | 148 "//device/bluetooth", |
| 147 "//device/bluetooth:mocks", | 149 "//device/bluetooth:mocks", |
| 148 "//testing/gmock", | 150 "//testing/gmock", |
| 149 "//testing/gtest", | 151 "//testing/gtest", |
| 150 "//ui/message_center:test_support", | 152 "//ui/message_center:test_support", |
| 151 ] | 153 ] |
| 152 } | 154 } |
| OLD | NEW |