| 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", |
| 11 "bluetooth_connection_finder.cc", | 11 "bluetooth_connection_finder.cc", |
| 12 "bluetooth_connection_finder.h", | 12 "bluetooth_connection_finder.h", |
| 13 "bluetooth_throttler.h", | 13 "bluetooth_throttler.h", |
| 14 "bluetooth_throttler_impl.cc", | 14 "bluetooth_throttler_impl.cc", |
| 15 "bluetooth_throttler_impl.h", | 15 "bluetooth_throttler_impl.h", |
| 16 "bluetooth_util.cc", | 16 "bluetooth_util.cc", |
| 17 "bluetooth_util.h", | 17 "bluetooth_util.h", |
| 18 "bluetooth_util_chromeos.cc", | 18 "bluetooth_util_chromeos.cc", |
| 19 "client.cc", | 19 "client.cc", |
| 20 "client.h", | 20 "client.h", |
| 21 "client_observer.h", | 21 "client_observer.h", |
| 22 "connection.cc", | 22 "connection.cc", |
| 23 "connection.h", | 23 "connection.h", |
| 24 "connection_finder.h", | 24 "connection_finder.h", |
| 25 "connection_observer.h", | 25 "connection_observer.h", |
| 26 "proximity_auth_client.h", |
| 26 "proximity_auth_system.cc", | 27 "proximity_auth_system.cc", |
| 27 "proximity_auth_system.h", | 28 "proximity_auth_system.h", |
| 28 "remote_device.h", | 29 "remote_device.h", |
| 29 "remote_status_update.cc", | 30 "remote_status_update.cc", |
| 30 "remote_status_update.h", | 31 "remote_status_update.h", |
| 32 "screenlock_bridge.cc", |
| 33 "screenlock_bridge.h", |
| 31 "secure_context.h", | 34 "secure_context.h", |
| 32 "switches.cc", | 35 "switches.cc", |
| 33 "switches.h", | 36 "switches.h", |
| 34 "throttled_bluetooth_connection_finder.cc", | 37 "throttled_bluetooth_connection_finder.cc", |
| 35 "throttled_bluetooth_connection_finder.h", | 38 "throttled_bluetooth_connection_finder.h", |
| 36 "wire_message.cc", | 39 "wire_message.cc", |
| 37 "wire_message.h", | 40 "wire_message.h", |
| 38 ] | 41 ] |
| 39 | 42 |
| 40 deps = [ | 43 deps = [ |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 # Note: This is a convenience target for ease of rapid iteration during | 76 # Note: This is a convenience target for ease of rapid iteration during |
| 74 # development. It is not executed on any try or build bots. | 77 # development. It is not executed on any try or build bots. |
| 75 test("proximity_auth_unittests") { | 78 test("proximity_auth_unittests") { |
| 76 sources = [ | 79 sources = [ |
| 77 "run_all_unittests.cc", | 80 "run_all_unittests.cc", |
| 78 ] | 81 ] |
| 79 deps = [ | 82 deps = [ |
| 80 ":unit_tests", | 83 ":unit_tests", |
| 81 ] | 84 ] |
| 82 } | 85 } |
| OLD | NEW |