| 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 "host_scan_scheduler.cc", | 11 "host_scan_scheduler.cc", |
| 12 "host_scan_scheduler.h", | 12 "host_scan_scheduler.h", |
| 13 "host_scanner.cc", | 13 "host_scanner.cc", |
| 14 "host_scanner.h", | 14 "host_scanner.h", |
| 15 "initializer.cc", | 15 "initializer.cc", |
| 16 "initializer.h", | 16 "initializer.h", |
| 17 "local_device_data_provider.cc", |
| 18 "local_device_data_provider.h", |
| 17 ] | 19 ] |
| 18 | 20 |
| 19 deps = [ | 21 deps = [ |
| 20 "//base", | 22 "//base", |
| 21 "//chromeos", | 23 "//chromeos", |
| 22 "//components/cryptauth", | 24 "//components/cryptauth", |
| 23 "//components/proximity_auth/logging", | 25 "//components/proximity_auth/logging", |
| 24 ] | 26 ] |
| 25 | 27 |
| 26 public_deps = [ | 28 public_deps = [ |
| (...skipping 15 matching lines...) Expand all Loading... |
| 42 "//testing/gmock", | 44 "//testing/gmock", |
| 43 ] | 45 ] |
| 44 } | 46 } |
| 45 | 47 |
| 46 source_set("unit_tests") { | 48 source_set("unit_tests") { |
| 47 testonly = true | 49 testonly = true |
| 48 | 50 |
| 49 sources = [ | 51 sources = [ |
| 50 "ble_advertisement_device_queue_unittest.cc", | 52 "ble_advertisement_device_queue_unittest.cc", |
| 51 "host_scan_scheduler_unittest.cc", | 53 "host_scan_scheduler_unittest.cc", |
| 54 "local_device_data_provider_unittest.cc", |
| 52 ] | 55 ] |
| 53 | 56 |
| 54 deps = [ | 57 deps = [ |
| 55 ":test_support", | 58 ":test_support", |
| 56 ":tether", | 59 ":tether", |
| 57 "//base/test:test_support", | 60 "//base/test:test_support", |
| 58 "//chromeos", | 61 "//chromeos", |
| 59 "//components/cryptauth", | 62 "//components/cryptauth", |
| 60 "//components/cryptauth:test_support", | 63 "//components/cryptauth:test_support", |
| 61 "//testing/gmock", | 64 "//testing/gmock", |
| 62 "//testing/gtest", | 65 "//testing/gtest", |
| 63 ] | 66 ] |
| 64 } | 67 } |
| OLD | NEW |