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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 "switches.h", | 46 "switches.h", |
47 "throttled_bluetooth_connection_finder.cc", | 47 "throttled_bluetooth_connection_finder.cc", |
48 "throttled_bluetooth_connection_finder.h", | 48 "throttled_bluetooth_connection_finder.h", |
49 "unlock_manager.h", | 49 "unlock_manager.h", |
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 "//chrome/common:constants", |
56 "//components/cryptauth", | 57 "//components/cryptauth", |
57 "//components/cryptauth/ble", | 58 "//components/cryptauth/ble", |
| 59 "//components/pref_registry:pref_registry", |
58 "//components/prefs", | 60 "//components/prefs", |
59 "//components/proximity_auth/logging", | 61 "//components/proximity_auth/logging", |
60 "//components/proximity_auth/public/interfaces", | 62 "//components/proximity_auth/public/interfaces", |
61 "//components/signin/core/account_id:account_id", | 63 "//components/signin/core/account_id:account_id", |
62 "//device/bluetooth", | 64 "//device/bluetooth", |
63 "//net", | 65 "//net", |
64 ] | 66 ] |
65 | 67 |
66 if (is_chromeos) { | 68 if (is_chromeos) { |
67 deps += [ "//chromeos" ] | 69 deps += [ "//chromeos" ] |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
138 sources = [ | 140 sources = [ |
139 "run_all_unittests.cc", | 141 "run_all_unittests.cc", |
140 ] | 142 ] |
141 deps = [ | 143 deps = [ |
142 ":unit_tests", | 144 ":unit_tests", |
143 "//base", | 145 "//base", |
144 "//base/test:test_support", | 146 "//base/test:test_support", |
145 ] | 147 ] |
146 } | 148 } |
147 } | 149 } |
OLD | NEW |