| 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 "ble_advertisement_device_queue.cc", | 9 "ble_advertisement_device_queue.cc", |
| 10 "ble_advertisement_device_queue.h", | 10 "ble_advertisement_device_queue.h", |
| 11 "ble_advertiser.cc", | 11 "ble_advertiser.cc", |
| 12 "ble_advertiser.h", | 12 "ble_advertiser.h", |
| 13 "ble_connection_manager.cc", |
| 14 "ble_connection_manager.h", |
| 13 "ble_constants.cc", | 15 "ble_constants.cc", |
| 14 "ble_constants.h", | 16 "ble_constants.h", |
| 15 "ble_scanner.cc", | 17 "ble_scanner.cc", |
| 16 "ble_scanner.h", | 18 "ble_scanner.h", |
| 17 "host_scan_scheduler.cc", | 19 "host_scan_scheduler.cc", |
| 18 "host_scan_scheduler.h", | 20 "host_scan_scheduler.h", |
| 19 "host_scanner.cc", | 21 "host_scanner.cc", |
| 20 "host_scanner.h", | 22 "host_scanner.h", |
| 21 "initializer.cc", | 23 "initializer.cc", |
| 22 "initializer.h", | 24 "initializer.h", |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 "//testing/gmock", | 57 "//testing/gmock", |
| 56 ] | 58 ] |
| 57 } | 59 } |
| 58 | 60 |
| 59 source_set("unit_tests") { | 61 source_set("unit_tests") { |
| 60 testonly = true | 62 testonly = true |
| 61 | 63 |
| 62 sources = [ | 64 sources = [ |
| 63 "ble_advertisement_device_queue_unittest.cc", | 65 "ble_advertisement_device_queue_unittest.cc", |
| 64 "ble_advertiser_unittest.cc", | 66 "ble_advertiser_unittest.cc", |
| 67 "ble_connection_manager_unittest.cc", |
| 65 "ble_scanner_unittest.cc", | 68 "ble_scanner_unittest.cc", |
| 66 "host_scan_scheduler_unittest.cc", | 69 "host_scan_scheduler_unittest.cc", |
| 67 "local_device_data_provider_unittest.cc", | 70 "local_device_data_provider_unittest.cc", |
| 68 ] | 71 ] |
| 69 | 72 |
| 70 deps = [ | 73 deps = [ |
| 71 ":test_support", | 74 ":test_support", |
| 72 ":tether", | 75 ":tether", |
| 73 "//base/test:test_support", | 76 "//base/test:test_support", |
| 74 "//chromeos", | 77 "//chromeos", |
| 75 "//components/cryptauth", | 78 "//components/cryptauth", |
| 76 "//components/cryptauth:test_support", | 79 "//components/cryptauth:test_support", |
| 77 "//device/bluetooth", | 80 "//device/bluetooth", |
| 78 "//device/bluetooth:mocks", | 81 "//device/bluetooth:mocks", |
| 79 "//testing/gmock", | 82 "//testing/gmock", |
| 80 "//testing/gtest", | 83 "//testing/gtest", |
| 81 ] | 84 ] |
| 82 } | 85 } |
| OLD | NEW |