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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 "local_device_data_provider.h", | 42 "local_device_data_provider.h", |
43 "message_transfer_operation.cc", | 43 "message_transfer_operation.cc", |
44 "message_transfer_operation.h", | 44 "message_transfer_operation.h", |
45 "message_wrapper.cc", | 45 "message_wrapper.cc", |
46 "message_wrapper.h", | 46 "message_wrapper.h", |
47 "notification_presenter.h", | 47 "notification_presenter.h", |
48 "pref_names.cc", | 48 "pref_names.cc", |
49 "pref_names.h", | 49 "pref_names.h", |
50 "tether_connector.cc", | 50 "tether_connector.cc", |
51 "tether_connector.h", | 51 "tether_connector.h", |
| 52 "tether_device_state_manager.cc", |
| 53 "tether_device_state_manager.h", |
52 "tether_host_fetcher.cc", | 54 "tether_host_fetcher.cc", |
53 "tether_host_fetcher.h", | 55 "tether_host_fetcher.h", |
54 "tether_network_disconnection_handler.cc", | 56 "tether_network_disconnection_handler.cc", |
55 "tether_network_disconnection_handler.h", | 57 "tether_network_disconnection_handler.h", |
56 "wifi_hotspot_connector.cc", | 58 "wifi_hotspot_connector.cc", |
57 "wifi_hotspot_connector.h", | 59 "wifi_hotspot_connector.h", |
58 ] | 60 ] |
59 | 61 |
60 deps = [ | 62 deps = [ |
61 "//base", | 63 "//base", |
(...skipping 87 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 |