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 ':cryptauth', | 16 ':cryptauth', |
17 ':cryptauth_proto', | 17 ':cryptauth_proto', |
18 ':proximity_auth_logging', | 18 ':proximity_auth_logging', |
19 '../base/base.gyp:base', | 19 '../base/base.gyp:base', |
20 '../base/base.gyp:base_prefs', | |
21 '../device/bluetooth/bluetooth.gyp:device_bluetooth', | 20 '../device/bluetooth/bluetooth.gyp:device_bluetooth', |
22 '../net/net.gyp:net', | 21 '../net/net.gyp:net', |
| 22 'prefs/prefs.gyp:prefs', |
23 ], | 23 ], |
24 'sources': [ | 24 'sources': [ |
25 "proximity_auth/authenticator.h", | 25 "proximity_auth/authenticator.h", |
26 "proximity_auth/ble/bluetooth_low_energy_characteristics_finder.cc", | 26 "proximity_auth/ble/bluetooth_low_energy_characteristics_finder.cc", |
27 "proximity_auth/ble/bluetooth_low_energy_characteristics_finder.h", | 27 "proximity_auth/ble/bluetooth_low_energy_characteristics_finder.h", |
28 "proximity_auth/ble/bluetooth_low_energy_connection.cc", | 28 "proximity_auth/ble/bluetooth_low_energy_connection.cc", |
29 "proximity_auth/ble/bluetooth_low_energy_connection.h", | 29 "proximity_auth/ble/bluetooth_low_energy_connection.h", |
30 "proximity_auth/ble/bluetooth_low_energy_connection_finder.cc", | 30 "proximity_auth/ble/bluetooth_low_energy_connection_finder.cc", |
31 "proximity_auth/ble/bluetooth_low_energy_connection_finder.h", | 31 "proximity_auth/ble/bluetooth_low_energy_connection_finder.h", |
32 "proximity_auth/ble/bluetooth_low_energy_device_whitelist.cc", | 32 "proximity_auth/ble/bluetooth_low_energy_device_whitelist.cc", |
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
254 'proximity_auth/webui/proximity_auth_webui_handler.cc', | 254 'proximity_auth/webui/proximity_auth_webui_handler.cc', |
255 'proximity_auth/webui/proximity_auth_webui_handler.h', | 255 'proximity_auth/webui/proximity_auth_webui_handler.h', |
256 'proximity_auth/webui/reachable_phone_flow.cc', | 256 'proximity_auth/webui/reachable_phone_flow.cc', |
257 'proximity_auth/webui/reachable_phone_flow.h', | 257 'proximity_auth/webui/reachable_phone_flow.h', |
258 'proximity_auth/webui/url_constants.cc', | 258 'proximity_auth/webui/url_constants.cc', |
259 'proximity_auth/webui/url_constants.h', | 259 'proximity_auth/webui/url_constants.h', |
260 ], | 260 ], |
261 }, | 261 }, |
262 ], | 262 ], |
263 } | 263 } |
OLD | NEW |