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 { | 5 { |
6 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 # GN version: //components/proximity_auth and | 8 # GN version: //components/proximity_auth and |
9 # //components/proximity_auth/ble. | 9 # //components/proximity_auth/ble. |
10 'target_name': 'proximity_auth', | 10 'target_name': 'proximity_auth', |
11 'type': 'static_library', | 11 'type': 'static_library', |
12 'include_dirs': [ | 12 'include_dirs': [ |
13 '..', | 13 '..', |
14 ], | 14 ], |
15 'dependencies': [ | 15 'dependencies': [ |
16 '../base/base.gyp:base', | 16 '../base/base.gyp:base', |
17 '../device/bluetooth/bluetooth.gyp:device_bluetooth', | 17 '../device/bluetooth/bluetooth.gyp:device_bluetooth', |
18 '../net/net.gyp:net', | 18 '../net/net.gyp:net', |
19 ], | 19 ], |
20 'sources': [ | 20 'sources': [ |
| 21 "proximity_auth/ble/bluetooth_low_energy_connection.cc", |
| 22 "proximity_auth/ble/bluetooth_low_energy_connection.h", |
21 "proximity_auth/ble/bluetooth_low_energy_connection_finder.cc", | 23 "proximity_auth/ble/bluetooth_low_energy_connection_finder.cc", |
22 "proximity_auth/ble/bluetooth_low_energy_connection_finder.h", | 24 "proximity_auth/ble/bluetooth_low_energy_connection_finder.h", |
| 25 "proximity_auth/ble/fake_wire_message.cc", |
| 26 "proximity_auth/ble/fake_wire_message.h", |
23 "proximity_auth/ble/proximity_auth_ble_system.cc", | 27 "proximity_auth/ble/proximity_auth_ble_system.cc", |
24 "proximity_auth/ble/proximity_auth_ble_system.h", | 28 "proximity_auth/ble/proximity_auth_ble_system.h", |
25 "proximity_auth/bluetooth_connection.cc", | 29 "proximity_auth/bluetooth_connection.cc", |
26 "proximity_auth/bluetooth_connection.h", | 30 "proximity_auth/bluetooth_connection.h", |
27 "proximity_auth/bluetooth_connection_finder.cc", | 31 "proximity_auth/bluetooth_connection_finder.cc", |
28 "proximity_auth/bluetooth_connection_finder.h", | 32 "proximity_auth/bluetooth_connection_finder.h", |
29 "proximity_auth/bluetooth_throttler.h", | 33 "proximity_auth/bluetooth_throttler.h", |
30 "proximity_auth/bluetooth_throttler_impl.cc", | 34 "proximity_auth/bluetooth_throttler_impl.cc", |
31 "proximity_auth/bluetooth_throttler_impl.h", | 35 "proximity_auth/bluetooth_throttler_impl.h", |
32 "proximity_auth/bluetooth_util.cc", | 36 "proximity_auth/bluetooth_util.cc", |
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
144 'proximity_auth/webui/proximity_auth_ui.cc', | 148 'proximity_auth/webui/proximity_auth_ui.cc', |
145 'proximity_auth/webui/proximity_auth_ui.h', | 149 'proximity_auth/webui/proximity_auth_ui.h', |
146 'proximity_auth/webui/proximity_auth_webui_handler.cc', | 150 'proximity_auth/webui/proximity_auth_webui_handler.cc', |
147 'proximity_auth/webui/proximity_auth_webui_handler.h', | 151 'proximity_auth/webui/proximity_auth_webui_handler.h', |
148 'proximity_auth/webui/url_constants.cc', | 152 'proximity_auth/webui/url_constants.cc', |
149 'proximity_auth/webui/url_constants.h', | 153 'proximity_auth/webui/url_constants.h', |
150 ], | 154 ], |
151 }, | 155 }, |
152 ], | 156 ], |
153 } | 157 } |
OLD | NEW |