| 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", | 13 "ble_connection_manager.cc", |
| 14 "ble_connection_manager.h", | 14 "ble_connection_manager.h", |
| 15 "ble_constants.cc", | 15 "ble_constants.cc", |
| 16 "ble_constants.h", | 16 "ble_constants.h", |
| 17 "ble_scanner.cc", | 17 "ble_scanner.cc", |
| 18 "ble_scanner.h", | 18 "ble_scanner.h", |
| 19 "host_scan_scheduler.cc", | 19 "host_scan_scheduler.cc", |
| 20 "host_scan_scheduler.h", | 20 "host_scan_scheduler.h", |
| 21 "host_scanner.cc", | 21 "host_scanner.cc", |
| 22 "host_scanner.h", | 22 "host_scanner.h", |
| 23 "initializer.cc", | 23 "initializer.cc", |
| 24 "initializer.h", | 24 "initializer.h", |
| 25 "local_device_data_provider.cc", | 25 "local_device_data_provider.cc", |
| 26 "local_device_data_provider.h", | 26 "local_device_data_provider.h", |
| 27 "message_wrapper.cc", |
| 28 "message_wrapper.h", |
| 27 ] | 29 ] |
| 28 | 30 |
| 29 deps = [ | 31 deps = [ |
| 30 "//base", | 32 "//base", |
| 31 "//chromeos", | 33 "//chromeos", |
| 32 "//chromeos/components/tether/proto", | 34 "//chromeos/components/tether/proto", |
| 33 "//components/cryptauth", | 35 "//components/cryptauth", |
| 34 "//components/cryptauth/ble", | 36 "//components/cryptauth/ble", |
| 35 "//components/proximity_auth/logging", | 37 "//components/proximity_auth/logging", |
| 36 "//device/bluetooth", | 38 "//device/bluetooth", |
| (...skipping 26 matching lines...) Expand all Loading... |
| 63 source_set("unit_tests") { | 65 source_set("unit_tests") { |
| 64 testonly = true | 66 testonly = true |
| 65 | 67 |
| 66 sources = [ | 68 sources = [ |
| 67 "ble_advertisement_device_queue_unittest.cc", | 69 "ble_advertisement_device_queue_unittest.cc", |
| 68 "ble_advertiser_unittest.cc", | 70 "ble_advertiser_unittest.cc", |
| 69 "ble_connection_manager_unittest.cc", | 71 "ble_connection_manager_unittest.cc", |
| 70 "ble_scanner_unittest.cc", | 72 "ble_scanner_unittest.cc", |
| 71 "host_scan_scheduler_unittest.cc", | 73 "host_scan_scheduler_unittest.cc", |
| 72 "local_device_data_provider_unittest.cc", | 74 "local_device_data_provider_unittest.cc", |
| 75 "message_wrapper_unittest.cc", |
| 73 ] | 76 ] |
| 74 | 77 |
| 75 deps = [ | 78 deps = [ |
| 76 ":test_support", | 79 ":test_support", |
| 77 ":tether", | 80 ":tether", |
| 78 "//base/test:test_support", | 81 "//base/test:test_support", |
| 79 "//chromeos", | 82 "//chromeos", |
| 80 "//chromeos/components/tether/proto", | 83 "//chromeos/components/tether/proto", |
| 81 "//components/cryptauth", | 84 "//components/cryptauth", |
| 82 "//components/cryptauth:test_support", | 85 "//components/cryptauth:test_support", |
| 83 "//components/cryptauth/ble", | 86 "//components/cryptauth/ble", |
| 84 "//device/bluetooth", | 87 "//device/bluetooth", |
| 85 "//device/bluetooth:mocks", | 88 "//device/bluetooth:mocks", |
| 86 "//testing/gmock", | 89 "//testing/gmock", |
| 87 "//testing/gtest", | 90 "//testing/gtest", |
| 88 ] | 91 ] |
| 89 } | 92 } |
| OLD | NEW |