| 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 "network_configuration_remover.h", | 48 "network_configuration_remover.h", |
| 49 "notification_presenter.h", | 49 "notification_presenter.h", |
| 50 "pref_names.cc", | 50 "pref_names.cc", |
| 51 "pref_names.h", | 51 "pref_names.h", |
| 52 "tether_connector.cc", | 52 "tether_connector.cc", |
| 53 "tether_connector.h", | 53 "tether_connector.h", |
| 54 "tether_device_state_manager.cc", | 54 "tether_device_state_manager.cc", |
| 55 "tether_device_state_manager.h", | 55 "tether_device_state_manager.h", |
| 56 "tether_host_fetcher.cc", | 56 "tether_host_fetcher.cc", |
| 57 "tether_host_fetcher.h", | 57 "tether_host_fetcher.h", |
| 58 "tether_host_response_recorder.cc", |
| 59 "tether_host_response_recorder.h", |
| 58 "tether_network_disconnection_handler.cc", | 60 "tether_network_disconnection_handler.cc", |
| 59 "tether_network_disconnection_handler.h", | 61 "tether_network_disconnection_handler.h", |
| 60 "wifi_hotspot_connector.cc", | 62 "wifi_hotspot_connector.cc", |
| 61 "wifi_hotspot_connector.h", | 63 "wifi_hotspot_connector.h", |
| 62 ] | 64 ] |
| 63 | 65 |
| 64 deps = [ | 66 deps = [ |
| 65 "//base", | 67 "//base", |
| 66 "//chromeos", | 68 "//chromeos", |
| 67 "//chromeos/components/tether/proto", | 69 "//chromeos/components/tether/proto", |
| (...skipping 23 matching lines...) Expand all Loading... |
| 91 "fake_notification_presenter.cc", | 93 "fake_notification_presenter.cc", |
| 92 "fake_notification_presenter.h", | 94 "fake_notification_presenter.h", |
| 93 "fake_tether_host_fetcher.cc", | 95 "fake_tether_host_fetcher.cc", |
| 94 "fake_tether_host_fetcher.h", | 96 "fake_tether_host_fetcher.h", |
| 95 "fake_wifi_hotspot_connector.cc", | 97 "fake_wifi_hotspot_connector.cc", |
| 96 "fake_wifi_hotspot_connector.h", | 98 "fake_wifi_hotspot_connector.h", |
| 97 "mock_host_scan_device_prioritizer.cc", | 99 "mock_host_scan_device_prioritizer.cc", |
| 98 "mock_host_scan_device_prioritizer.h", | 100 "mock_host_scan_device_prioritizer.h", |
| 99 "mock_local_device_data_provider.cc", | 101 "mock_local_device_data_provider.cc", |
| 100 "mock_local_device_data_provider.h", | 102 "mock_local_device_data_provider.h", |
| 103 "mock_tether_host_response_recorder.cc", |
| 104 "mock_tether_host_response_recorder.h", |
| 101 ] | 105 ] |
| 102 | 106 |
| 103 public_deps = [ | 107 public_deps = [ |
| 104 ":tether", | 108 ":tether", |
| 105 ] | 109 ] |
| 106 | 110 |
| 107 deps = [ | 111 deps = [ |
| 108 "//base", | 112 "//base", |
| 109 "//chromeos", | 113 "//chromeos", |
| 110 "//components/cryptauth", | 114 "//components/cryptauth", |
| (...skipping 20 matching lines...) Expand all Loading... |
| 131 "host_scanner_unittest.cc", | 135 "host_scanner_unittest.cc", |
| 132 "initializer_unittest.cc", | 136 "initializer_unittest.cc", |
| 133 "keep_alive_operation_unittest.cc", | 137 "keep_alive_operation_unittest.cc", |
| 134 "keep_alive_scheduler_unittest.cc", | 138 "keep_alive_scheduler_unittest.cc", |
| 135 "local_device_data_provider_unittest.cc", | 139 "local_device_data_provider_unittest.cc", |
| 136 "message_transfer_operation_unittest.cc", | 140 "message_transfer_operation_unittest.cc", |
| 137 "message_wrapper_unittest.cc", | 141 "message_wrapper_unittest.cc", |
| 138 "network_configuration_remover_unittest.cc", | 142 "network_configuration_remover_unittest.cc", |
| 139 "tether_connector_unittest.cc", | 143 "tether_connector_unittest.cc", |
| 140 "tether_host_fetcher_unittest.cc", | 144 "tether_host_fetcher_unittest.cc", |
| 145 "tether_host_response_recorder_unittest.cc", |
| 141 "tether_network_disconnection_handler_unittest.cc", | 146 "tether_network_disconnection_handler_unittest.cc", |
| 142 "wifi_hotspot_connector_unittest.cc", | 147 "wifi_hotspot_connector_unittest.cc", |
| 143 ] | 148 ] |
| 144 | 149 |
| 145 deps = [ | 150 deps = [ |
| 146 ":test_support", | 151 ":test_support", |
| 147 ":tether", | 152 ":tether", |
| 148 "//base/test:test_support", | 153 "//base/test:test_support", |
| 149 "//chromeos", | 154 "//chromeos", |
| 150 "//chromeos:test_support", | 155 "//chromeos:test_support", |
| 151 "//chromeos/components/tether/proto", | 156 "//chromeos/components/tether/proto", |
| 152 "//components/cryptauth", | 157 "//components/cryptauth", |
| 153 "//components/cryptauth:test_support", | 158 "//components/cryptauth:test_support", |
| 154 "//components/cryptauth/ble", | 159 "//components/cryptauth/ble", |
| 155 "//components/prefs:test_support", | 160 "//components/prefs:test_support", |
| 156 "//components/signin/core/browser:test_support", | 161 "//components/signin/core/browser:test_support", |
| 157 "//device/bluetooth", | 162 "//device/bluetooth", |
| 158 "//device/bluetooth:mocks", | 163 "//device/bluetooth:mocks", |
| 159 "//testing/gmock", | 164 "//testing/gmock", |
| 160 "//testing/gtest", | 165 "//testing/gtest", |
| 161 "//ui/message_center:test_support", | 166 "//ui/message_center:test_support", |
| 162 ] | 167 ] |
| 163 } | 168 } |
| OLD | NEW |