| 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 "authenticator.h", | 9 "authenticator.h", |
| 10 "bluetooth_connection.cc", | 10 "bluetooth_connection.cc", |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 "proximity_auth_system.h", | 40 "proximity_auth_system.h", |
| 41 "proximity_monitor.h", | 41 "proximity_monitor.h", |
| 42 "proximity_monitor_impl.cc", | 42 "proximity_monitor_impl.cc", |
| 43 "proximity_monitor_impl.h", | 43 "proximity_monitor_impl.h", |
| 44 "proximity_monitor_observer.h", | 44 "proximity_monitor_observer.h", |
| 45 "remote_device.cc", | 45 "remote_device.cc", |
| 46 "remote_device.h", | 46 "remote_device.h", |
| 47 "remote_device_life_cycle.h", | 47 "remote_device_life_cycle.h", |
| 48 "remote_device_life_cycle_impl.cc", | 48 "remote_device_life_cycle_impl.cc", |
| 49 "remote_device_life_cycle_impl.h", | 49 "remote_device_life_cycle_impl.h", |
| 50 "remote_device_loader.cc", |
| 51 "remote_device_loader.h", |
| 50 "remote_status_update.cc", | 52 "remote_status_update.cc", |
| 51 "remote_status_update.h", | 53 "remote_status_update.h", |
| 52 "screenlock_bridge.cc", | 54 "screenlock_bridge.cc", |
| 53 "screenlock_bridge.h", | 55 "screenlock_bridge.h", |
| 54 "screenlock_state.h", | 56 "screenlock_state.h", |
| 55 "secure_context.h", | 57 "secure_context.h", |
| 56 "switches.cc", | 58 "switches.cc", |
| 57 "switches.h", | 59 "switches.h", |
| 58 "throttled_bluetooth_connection_finder.cc", | 60 "throttled_bluetooth_connection_finder.cc", |
| 59 "throttled_bluetooth_connection_finder.h", | 61 "throttled_bluetooth_connection_finder.h", |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 "bluetooth_connection_unittest.cc", | 100 "bluetooth_connection_unittest.cc", |
| 99 "bluetooth_throttler_impl_unittest.cc", | 101 "bluetooth_throttler_impl_unittest.cc", |
| 100 "connection_unittest.cc", | 102 "connection_unittest.cc", |
| 101 "device_to_device_authenticator_unittest.cc", | 103 "device_to_device_authenticator_unittest.cc", |
| 102 "device_to_device_operations_unittest.cc", | 104 "device_to_device_operations_unittest.cc", |
| 103 "device_to_device_secure_context_unittest.cc", | 105 "device_to_device_secure_context_unittest.cc", |
| 104 "messenger_impl_unittest.cc", | 106 "messenger_impl_unittest.cc", |
| 105 "proximity_auth_system_unittest.cc", | 107 "proximity_auth_system_unittest.cc", |
| 106 "proximity_monitor_impl_unittest.cc", | 108 "proximity_monitor_impl_unittest.cc", |
| 107 "remote_device_life_cycle_impl_unittest.cc", | 109 "remote_device_life_cycle_impl_unittest.cc", |
| 110 "remote_device_loader_unittest.cc", |
| 108 "remote_status_update_unittest.cc", | 111 "remote_status_update_unittest.cc", |
| 109 "throttled_bluetooth_connection_finder_unittest.cc", | 112 "throttled_bluetooth_connection_finder_unittest.cc", |
| 110 "unlock_manager_unittest.cc", | 113 "unlock_manager_unittest.cc", |
| 111 "wire_message_unittest.cc", | 114 "wire_message_unittest.cc", |
| 112 ] | 115 ] |
| 113 | 116 |
| 114 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 117 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 115 | 118 |
| 116 deps = [ | 119 deps = [ |
| 117 ":proximity_auth", | 120 ":proximity_auth", |
| (...skipping 12 matching lines...) Expand all Loading... |
| 130 # Note: This is a convenience target for ease of rapid iteration during | 133 # Note: This is a convenience target for ease of rapid iteration during |
| 131 # development. It is not executed on any try or build bots. | 134 # development. It is not executed on any try or build bots. |
| 132 test("proximity_auth_unittests") { | 135 test("proximity_auth_unittests") { |
| 133 sources = [ | 136 sources = [ |
| 134 "run_all_unittests.cc", | 137 "run_all_unittests.cc", |
| 135 ] | 138 ] |
| 136 deps = [ | 139 deps = [ |
| 137 ":unit_tests", | 140 ":unit_tests", |
| 138 ] | 141 ] |
| 139 } | 142 } |
| OLD | NEW |