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 28 matching lines...) Expand all Loading... |
39 "proximity_auth_pref_manager.cc", | 39 "proximity_auth_pref_manager.cc", |
40 "proximity_auth_pref_manager.h", | 40 "proximity_auth_pref_manager.h", |
41 "proximity_auth_pref_names.cc", | 41 "proximity_auth_pref_names.cc", |
42 "proximity_auth_pref_names.h", | 42 "proximity_auth_pref_names.h", |
43 "proximity_auth_system.cc", | 43 "proximity_auth_system.cc", |
44 "proximity_auth_system.h", | 44 "proximity_auth_system.h", |
45 "proximity_monitor.h", | 45 "proximity_monitor.h", |
46 "proximity_monitor_impl.cc", | 46 "proximity_monitor_impl.cc", |
47 "proximity_monitor_impl.h", | 47 "proximity_monitor_impl.h", |
48 "proximity_monitor_observer.h", | 48 "proximity_monitor_observer.h", |
49 "remote_device.cc", | |
50 "remote_device.h", | |
51 "remote_device_life_cycle.h", | 49 "remote_device_life_cycle.h", |
52 "remote_device_life_cycle_impl.cc", | 50 "remote_device_life_cycle_impl.cc", |
53 "remote_device_life_cycle_impl.h", | 51 "remote_device_life_cycle_impl.h", |
54 "remote_device_loader.cc", | 52 "remote_device_loader.cc", |
55 "remote_device_loader.h", | 53 "remote_device_loader.h", |
56 "remote_status_update.cc", | 54 "remote_status_update.cc", |
57 "remote_status_update.h", | 55 "remote_status_update.h", |
58 "screenlock_bridge.cc", | 56 "screenlock_bridge.cc", |
59 "screenlock_bridge.h", | 57 "screenlock_bridge.h", |
60 "screenlock_state.h", | 58 "screenlock_state.h", |
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
170 sources = [ | 168 sources = [ |
171 "run_all_unittests.cc", | 169 "run_all_unittests.cc", |
172 ] | 170 ] |
173 deps = [ | 171 deps = [ |
174 ":unit_tests", | 172 ":unit_tests", |
175 "//base", | 173 "//base", |
176 "//base/test:test_support", | 174 "//base/test:test_support", |
177 ] | 175 ] |
178 } | 176 } |
179 } | 177 } |
OLD | NEW |