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 "authenticator.h", | 9 "authenticator.h", |
10 "bluetooth_connection.cc", | 10 "bluetooth_connection.cc", |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
63 "throttled_bluetooth_connection_finder.h", | 63 "throttled_bluetooth_connection_finder.h", |
64 "unlock_manager.cc", | 64 "unlock_manager.cc", |
65 "unlock_manager.h", | 65 "unlock_manager.h", |
66 "wire_message.cc", | 66 "wire_message.cc", |
67 "wire_message.h", | 67 "wire_message.h", |
68 ] | 68 ] |
69 | 69 |
70 deps = [ | 70 deps = [ |
71 "//base", | 71 "//base", |
72 "//components/cryptauth", | 72 "//components/cryptauth", |
73 "//components/cryptauth/ble", | |
73 "//components/prefs", | 74 "//components/prefs", |
74 "//components/proximity_auth/ble", | 75 "//components/proximity_auth/ble", |
75 "//components/proximity_auth/logging", | 76 "//components/proximity_auth/logging", |
76 "//components/signin/core/account_id:account_id", | 77 "//components/signin/core/account_id:account_id", |
77 "//device/bluetooth", | 78 "//device/bluetooth", |
78 "//net", | 79 "//net", |
79 ] | 80 ] |
80 | 81 |
81 # TODO(https://crbug.com/562683): This whitelists a circular include | 82 # TODO(https://crbug.com/562683): This whitelists a circular include |
82 # dependency between this target and the following targets which should not | 83 # dependency between this target and the following targets which should not |
83 # exist. | 84 # exist. |
84 allow_circular_includes_from = [ "//components/proximity_auth/ble" ] | 85 allow_circular_includes_from = [ |
86 "//components/cryptauth/ble", # TODO (hansberry): Remove after migration. | |
Kyle Horimoto
2016/12/08 21:52:41
This shouldn't need to be the case.
Ryan Hansberry
2016/12/09 01:18:14
Done.
| |
87 "//components/proximity_auth/ble", | |
88 ] | |
85 | 89 |
86 if (is_chromeos) { | 90 if (is_chromeos) { |
87 deps += [ "//chromeos" ] | 91 deps += [ "//chromeos" ] |
88 } | 92 } |
89 } | 93 } |
90 | 94 |
91 static_library("test_support") { | 95 static_library("test_support") { |
92 testonly = true | 96 testonly = true |
93 | 97 |
94 sources = [ | 98 sources = [ |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
168 sources = [ | 172 sources = [ |
169 "run_all_unittests.cc", | 173 "run_all_unittests.cc", |
170 ] | 174 ] |
171 deps = [ | 175 deps = [ |
172 ":unit_tests", | 176 ":unit_tests", |
173 "//base", | 177 "//base", |
174 "//base/test:test_support", | 178 "//base/test:test_support", |
175 ] | 179 ] |
176 } | 180 } |
177 } | 181 } |
OLD | NEW |