| 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 ] | 56 ] |
| 57 | 57 |
| 58 deps = [ | 58 deps = [ |
| 59 "//base", | 59 "//base", |
| 60 "//chromeos", | 60 "//chromeos", |
| 61 "//chromeos/components/tether/proto", | 61 "//chromeos/components/tether/proto", |
| 62 "//components/cryptauth", | 62 "//components/cryptauth", |
| 63 "//components/cryptauth/ble", | 63 "//components/cryptauth/ble", |
| 64 "//components/prefs", | 64 "//components/prefs", |
| 65 "//components/proximity_auth/logging", | 65 "//components/proximity_auth/logging", |
| 66 "//components/signin/core/browser", |
| 66 "//device/bluetooth", | 67 "//device/bluetooth", |
| 67 "//ui/gfx", | 68 "//ui/gfx", |
| 68 "//ui/message_center", | 69 "//ui/message_center", |
| 69 ] | 70 ] |
| 70 | 71 |
| 71 public_deps = [ | 72 public_deps = [ |
| 72 "//components/cryptauth/proto", | 73 "//components/cryptauth/proto", |
| 73 ] | 74 ] |
| 74 } | 75 } |
| 75 | 76 |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 "active_host_unittest.cc", | 116 "active_host_unittest.cc", |
| 116 "ble_advertisement_device_queue_unittest.cc", | 117 "ble_advertisement_device_queue_unittest.cc", |
| 117 "ble_advertiser_unittest.cc", | 118 "ble_advertiser_unittest.cc", |
| 118 "ble_connection_manager_unittest.cc", | 119 "ble_connection_manager_unittest.cc", |
| 119 "ble_scanner_unittest.cc", | 120 "ble_scanner_unittest.cc", |
| 120 "connect_tethering_operation_unittest.cc", | 121 "connect_tethering_operation_unittest.cc", |
| 121 "host_scan_device_prioritizer_unittest.cc", | 122 "host_scan_device_prioritizer_unittest.cc", |
| 122 "host_scan_scheduler_unittest.cc", | 123 "host_scan_scheduler_unittest.cc", |
| 123 "host_scanner_operation_unittest.cc", | 124 "host_scanner_operation_unittest.cc", |
| 124 "host_scanner_unittest.cc", | 125 "host_scanner_unittest.cc", |
| 126 "initializer_unittest.cc", |
| 125 "keep_alive_operation_unittest.cc", | 127 "keep_alive_operation_unittest.cc", |
| 126 "keep_alive_scheduler_unittest.cc", | 128 "keep_alive_scheduler_unittest.cc", |
| 127 "local_device_data_provider_unittest.cc", | 129 "local_device_data_provider_unittest.cc", |
| 128 "message_transfer_operation_unittest.cc", | 130 "message_transfer_operation_unittest.cc", |
| 129 "message_wrapper_unittest.cc", | 131 "message_wrapper_unittest.cc", |
| 130 "tether_connector_unittest.cc", | 132 "tether_connector_unittest.cc", |
| 131 "tether_host_fetcher_unittest.cc", | 133 "tether_host_fetcher_unittest.cc", |
| 132 "wifi_hotspot_connector_unittest.cc", | 134 "wifi_hotspot_connector_unittest.cc", |
| 133 ] | 135 ] |
| 134 | 136 |
| 135 deps = [ | 137 deps = [ |
| 136 ":test_support", | 138 ":test_support", |
| 137 ":tether", | 139 ":tether", |
| 138 "//base/test:test_support", | 140 "//base/test:test_support", |
| 139 "//chromeos", | 141 "//chromeos", |
| 140 "//chromeos:test_support", | 142 "//chromeos:test_support", |
| 141 "//chromeos/components/tether/proto", | 143 "//chromeos/components/tether/proto", |
| 142 "//components/cryptauth", | 144 "//components/cryptauth", |
| 143 "//components/cryptauth:test_support", | 145 "//components/cryptauth:test_support", |
| 144 "//components/cryptauth/ble", | 146 "//components/cryptauth/ble", |
| 145 "//components/prefs:test_support", | 147 "//components/prefs:test_support", |
| 148 "//components/signin/core/browser:test_support", |
| 146 "//device/bluetooth", | 149 "//device/bluetooth", |
| 147 "//device/bluetooth:mocks", | 150 "//device/bluetooth:mocks", |
| 148 "//testing/gmock", | 151 "//testing/gmock", |
| 149 "//testing/gtest", | 152 "//testing/gtest", |
| 150 "//ui/message_center:test_support", | 153 "//ui/message_center:test_support", |
| 151 ] | 154 ] |
| 152 } | 155 } |
| OLD | NEW |