OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//testing/test.gni") | 5 import("//testing/test.gni") |
6 | 6 |
7 static_library("proximity_auth") { | 7 static_library("proximity_auth") { |
8 sources = [ | 8 sources = [ |
9 "bluetooth_connection.cc", | 9 "bluetooth_connection.cc", |
10 "bluetooth_connection.h", | 10 "bluetooth_connection.h", |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 "unlock_manager_impl.cc", | 50 "unlock_manager_impl.cc", |
51 "unlock_manager_impl.h", | 51 "unlock_manager_impl.h", |
52 ] | 52 ] |
53 | 53 |
54 deps = [ | 54 deps = [ |
55 "//base", | 55 "//base", |
56 "//components/cryptauth", | 56 "//components/cryptauth", |
57 "//components/cryptauth/ble", | 57 "//components/cryptauth/ble", |
58 "//components/prefs", | 58 "//components/prefs", |
59 "//components/proximity_auth/logging", | 59 "//components/proximity_auth/logging", |
| 60 "//components/proximity_auth/public/interfaces", |
60 "//components/signin/core/account_id:account_id", | 61 "//components/signin/core/account_id:account_id", |
61 "//device/bluetooth", | 62 "//device/bluetooth", |
62 "//net", | 63 "//net", |
63 ] | 64 ] |
64 | 65 |
65 if (is_chromeos) { | 66 if (is_chromeos) { |
66 deps += [ "//chromeos" ] | 67 deps += [ "//chromeos" ] |
67 } | 68 } |
68 } | 69 } |
69 | 70 |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
137 sources = [ | 138 sources = [ |
138 "run_all_unittests.cc", | 139 "run_all_unittests.cc", |
139 ] | 140 ] |
140 deps = [ | 141 deps = [ |
141 ":unit_tests", | 142 ":unit_tests", |
142 "//base", | 143 "//base", |
143 "//base/test:test_support", | 144 "//base/test:test_support", |
144 ] | 145 ] |
145 } | 146 } |
146 } | 147 } |
OLD | NEW |