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 "local_device_data_provider.cc", | 19 "local_device_data_provider.cc", |
18 "local_device_data_provider.h", | 20 "local_device_data_provider.h", |
19 ] | 21 ] |
20 | 22 |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 ":test_support", | 60 ":test_support", |
59 ":tether", | 61 ":tether", |
60 "//base/test:test_support", | 62 "//base/test:test_support", |
61 "//chromeos", | 63 "//chromeos", |
62 "//components/cryptauth", | 64 "//components/cryptauth", |
63 "//components/cryptauth:test_support", | 65 "//components/cryptauth:test_support", |
64 "//testing/gmock", | 66 "//testing/gmock", |
65 "//testing/gtest", | 67 "//testing/gtest", |
66 ] | 68 ] |
67 } | 69 } |
OLD | NEW |