| 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_constants.cc", |
| 12 "ble_constants.h", |
| 11 "host_scan_scheduler.cc", | 13 "host_scan_scheduler.cc", |
| 12 "host_scan_scheduler.h", | 14 "host_scan_scheduler.h", |
| 13 "host_scanner.cc", | 15 "host_scanner.cc", |
| 14 "host_scanner.h", | 16 "host_scanner.h", |
| 15 "initializer.cc", | 17 "initializer.cc", |
| 16 "initializer.h", | 18 "initializer.h", |
| 17 ] | 19 ] |
| 18 | 20 |
| 19 deps = [ | 21 deps = [ |
| 20 "//base", | 22 "//base", |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 ":test_support", | 57 ":test_support", |
| 56 ":tether", | 58 ":tether", |
| 57 "//base/test:test_support", | 59 "//base/test:test_support", |
| 58 "//chromeos", | 60 "//chromeos", |
| 59 "//components/cryptauth", | 61 "//components/cryptauth", |
| 60 "//components/cryptauth:test_support", | 62 "//components/cryptauth:test_support", |
| 61 "//testing/gmock", | 63 "//testing/gmock", |
| 62 "//testing/gtest", | 64 "//testing/gtest", |
| 63 ] | 65 ] |
| 64 } | 66 } |
| OLD | NEW |