| 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 source_set("proximity_auth") { | 7 source_set("proximity_auth") { |
| 8 sources = [ | 8 sources = [ |
| 9 "bluetooth_connection.cc", | 9 "bluetooth_connection.cc", |
| 10 "bluetooth_connection.h", | 10 "bluetooth_connection.h", |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 "connection_finder.h", | 24 "connection_finder.h", |
| 25 "connection_observer.h", | 25 "connection_observer.h", |
| 26 "proximity_auth_client.h", | 26 "proximity_auth_client.h", |
| 27 "proximity_auth_system.cc", | 27 "proximity_auth_system.cc", |
| 28 "proximity_auth_system.h", | 28 "proximity_auth_system.h", |
| 29 "remote_device.h", | 29 "remote_device.h", |
| 30 "remote_status_update.cc", | 30 "remote_status_update.cc", |
| 31 "remote_status_update.h", | 31 "remote_status_update.h", |
| 32 "screenlock_bridge.cc", | 32 "screenlock_bridge.cc", |
| 33 "screenlock_bridge.h", | 33 "screenlock_bridge.h", |
| 34 "screenlock_state.h", |
| 34 "secure_context.h", | 35 "secure_context.h", |
| 35 "switches.cc", | 36 "switches.cc", |
| 36 "switches.h", | 37 "switches.h", |
| 37 "throttled_bluetooth_connection_finder.cc", | 38 "throttled_bluetooth_connection_finder.cc", |
| 38 "throttled_bluetooth_connection_finder.h", | 39 "throttled_bluetooth_connection_finder.h", |
| 39 "wire_message.cc", | 40 "wire_message.cc", |
| 40 "wire_message.h", | 41 "wire_message.h", |
| 41 ] | 42 ] |
| 42 | 43 |
| 43 deps = [ | 44 deps = [ |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 # Note: This is a convenience target for ease of rapid iteration during | 77 # Note: This is a convenience target for ease of rapid iteration during |
| 77 # development. It is not executed on any try or build bots. | 78 # development. It is not executed on any try or build bots. |
| 78 test("proximity_auth_unittests") { | 79 test("proximity_auth_unittests") { |
| 79 sources = [ | 80 sources = [ |
| 80 "run_all_unittests.cc", | 81 "run_all_unittests.cc", |
| 81 ] | 82 ] |
| 82 deps = [ | 83 deps = [ |
| 83 ":unit_tests", | 84 ":unit_tests", |
| 84 ] | 85 ] |
| 85 } | 86 } |
| OLD | NEW |