| 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", |
| 10 "active_host.h", |
| 9 "ble_advertisement_device_queue.cc", | 11 "ble_advertisement_device_queue.cc", |
| 10 "ble_advertisement_device_queue.h", | 12 "ble_advertisement_device_queue.h", |
| 11 "ble_advertiser.cc", | 13 "ble_advertiser.cc", |
| 12 "ble_advertiser.h", | 14 "ble_advertiser.h", |
| 13 "ble_connection_manager.cc", | 15 "ble_connection_manager.cc", |
| 14 "ble_connection_manager.h", | 16 "ble_connection_manager.h", |
| 15 "ble_constants.cc", | 17 "ble_constants.cc", |
| 16 "ble_constants.h", | 18 "ble_constants.h", |
| 17 "ble_scanner.cc", | 19 "ble_scanner.cc", |
| 18 "ble_scanner.h", | 20 "ble_scanner.h", |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 "//base", | 78 "//base", |
| 77 "//components/cryptauth", | 79 "//components/cryptauth", |
| 78 "//testing/gmock", | 80 "//testing/gmock", |
| 79 ] | 81 ] |
| 80 } | 82 } |
| 81 | 83 |
| 82 source_set("unit_tests") { | 84 source_set("unit_tests") { |
| 83 testonly = true | 85 testonly = true |
| 84 | 86 |
| 85 sources = [ | 87 sources = [ |
| 88 "active_host_unittest.cc", |
| 86 "ble_advertisement_device_queue_unittest.cc", | 89 "ble_advertisement_device_queue_unittest.cc", |
| 87 "ble_advertiser_unittest.cc", | 90 "ble_advertiser_unittest.cc", |
| 88 "ble_connection_manager_unittest.cc", | 91 "ble_connection_manager_unittest.cc", |
| 89 "ble_scanner_unittest.cc", | 92 "ble_scanner_unittest.cc", |
| 90 "connect_tethering_operation_unittest.cc", | 93 "connect_tethering_operation_unittest.cc", |
| 91 "host_scan_device_prioritizer_unittest.cc", | 94 "host_scan_device_prioritizer_unittest.cc", |
| 92 "host_scan_scheduler_unittest.cc", | 95 "host_scan_scheduler_unittest.cc", |
| 93 "host_scanner_operation_unittest.cc", | 96 "host_scanner_operation_unittest.cc", |
| 94 "host_scanner_unittest.cc", | 97 "host_scanner_unittest.cc", |
| 95 "local_device_data_provider_unittest.cc", | 98 "local_device_data_provider_unittest.cc", |
| (...skipping 11 matching lines...) Expand all Loading... |
| 107 "//components/cryptauth", | 110 "//components/cryptauth", |
| 108 "//components/cryptauth:test_support", | 111 "//components/cryptauth:test_support", |
| 109 "//components/cryptauth/ble", | 112 "//components/cryptauth/ble", |
| 110 "//components/prefs:test_support", | 113 "//components/prefs:test_support", |
| 111 "//device/bluetooth", | 114 "//device/bluetooth", |
| 112 "//device/bluetooth:mocks", | 115 "//device/bluetooth:mocks", |
| 113 "//testing/gmock", | 116 "//testing/gmock", |
| 114 "//testing/gtest", | 117 "//testing/gtest", |
| 115 ] | 118 ] |
| 116 } | 119 } |
| OLD | NEW |