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 14 matching lines...) Expand all Loading... |
25 "host_scan_scheduler.cc", | 25 "host_scan_scheduler.cc", |
26 "host_scan_scheduler.h", | 26 "host_scan_scheduler.h", |
27 "host_scanner.cc", | 27 "host_scanner.cc", |
28 "host_scanner.h", | 28 "host_scanner.h", |
29 "host_scanner_operation.cc", | 29 "host_scanner_operation.cc", |
30 "host_scanner_operation.h", | 30 "host_scanner_operation.h", |
31 "initializer.cc", | 31 "initializer.cc", |
32 "initializer.h", | 32 "initializer.h", |
33 "keep_alive_operation.cc", | 33 "keep_alive_operation.cc", |
34 "keep_alive_operation.h", | 34 "keep_alive_operation.h", |
| 35 "keep_alive_scheduler.cc", |
| 36 "keep_alive_scheduler.h", |
35 "local_device_data_provider.cc", | 37 "local_device_data_provider.cc", |
36 "local_device_data_provider.h", | 38 "local_device_data_provider.h", |
37 "message_transfer_operation.cc", | 39 "message_transfer_operation.cc", |
38 "message_transfer_operation.h", | 40 "message_transfer_operation.h", |
39 "message_wrapper.cc", | 41 "message_wrapper.cc", |
40 "message_wrapper.h", | 42 "message_wrapper.h", |
41 "pref_names.cc", | 43 "pref_names.cc", |
42 "pref_names.h", | 44 "pref_names.h", |
43 "tether_host_fetcher.cc", | 45 "tether_host_fetcher.cc", |
44 "tether_host_fetcher.h", | 46 "tether_host_fetcher.h", |
(...skipping 12 matching lines...) Expand all Loading... |
57 | 59 |
58 public_deps = [ | 60 public_deps = [ |
59 "//components/cryptauth/proto", | 61 "//components/cryptauth/proto", |
60 ] | 62 ] |
61 } | 63 } |
62 | 64 |
63 static_library("test_support") { | 65 static_library("test_support") { |
64 testonly = true | 66 testonly = true |
65 | 67 |
66 sources = [ | 68 sources = [ |
| 69 "fake_active_host.cc", |
| 70 "fake_active_host.h", |
67 "fake_ble_connection_manager.cc", | 71 "fake_ble_connection_manager.cc", |
68 "fake_ble_connection_manager.h", | 72 "fake_ble_connection_manager.h", |
69 "fake_tether_host_fetcher.cc", | 73 "fake_tether_host_fetcher.cc", |
70 "fake_tether_host_fetcher.h", | 74 "fake_tether_host_fetcher.h", |
71 "mock_local_device_data_provider.cc", | 75 "mock_local_device_data_provider.cc", |
72 "mock_local_device_data_provider.h", | 76 "mock_local_device_data_provider.h", |
73 ] | 77 ] |
74 | 78 |
75 public_deps = [ | 79 public_deps = [ |
76 ":tether", | 80 ":tether", |
(...skipping 14 matching lines...) Expand all Loading... |
91 "ble_advertisement_device_queue_unittest.cc", | 95 "ble_advertisement_device_queue_unittest.cc", |
92 "ble_advertiser_unittest.cc", | 96 "ble_advertiser_unittest.cc", |
93 "ble_connection_manager_unittest.cc", | 97 "ble_connection_manager_unittest.cc", |
94 "ble_scanner_unittest.cc", | 98 "ble_scanner_unittest.cc", |
95 "connect_tethering_operation_unittest.cc", | 99 "connect_tethering_operation_unittest.cc", |
96 "host_scan_device_prioritizer_unittest.cc", | 100 "host_scan_device_prioritizer_unittest.cc", |
97 "host_scan_scheduler_unittest.cc", | 101 "host_scan_scheduler_unittest.cc", |
98 "host_scanner_operation_unittest.cc", | 102 "host_scanner_operation_unittest.cc", |
99 "host_scanner_unittest.cc", | 103 "host_scanner_unittest.cc", |
100 "keep_alive_operation_unittest.cc", | 104 "keep_alive_operation_unittest.cc", |
| 105 "keep_alive_scheduler_unittest.cc", |
101 "local_device_data_provider_unittest.cc", | 106 "local_device_data_provider_unittest.cc", |
102 "message_transfer_operation_unittest.cc", | 107 "message_transfer_operation_unittest.cc", |
103 "message_wrapper_unittest.cc", | 108 "message_wrapper_unittest.cc", |
104 "tether_host_fetcher_unittest.cc", | 109 "tether_host_fetcher_unittest.cc", |
105 ] | 110 ] |
106 | 111 |
107 deps = [ | 112 deps = [ |
108 ":test_support", | 113 ":test_support", |
109 ":tether", | 114 ":tether", |
110 "//base/test:test_support", | 115 "//base/test:test_support", |
111 "//chromeos", | 116 "//chromeos", |
112 "//chromeos/components/tether/proto", | 117 "//chromeos/components/tether/proto", |
113 "//components/cryptauth", | 118 "//components/cryptauth", |
114 "//components/cryptauth:test_support", | 119 "//components/cryptauth:test_support", |
115 "//components/cryptauth/ble", | 120 "//components/cryptauth/ble", |
116 "//components/prefs:test_support", | 121 "//components/prefs:test_support", |
117 "//device/bluetooth", | 122 "//device/bluetooth", |
118 "//device/bluetooth:mocks", | 123 "//device/bluetooth:mocks", |
119 "//testing/gmock", | 124 "//testing/gmock", |
120 "//testing/gtest", | 125 "//testing/gtest", |
121 ] | 126 ] |
122 } | 127 } |
OLD | NEW |