android: add gyp rules for platform android_window
[chromium-blink-merge.git] / components / proximity_auth.gypi
blobec338212dc858bb7949e5fee7e02813f069a168a
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
3 # found in the LICENSE file.
6   'targets': [
7     {
8       # GN version: //components/proximity_auth and
9       # //components/proximity_auth/ble.
10       'target_name': 'proximity_auth',
11       'type': 'static_library',
12       'include_dirs': [
13         '..',
14       ],
15       'dependencies': [
16         ':cryptauth',
17         ':cryptauth_proto',
18         ':proximity_auth_logging',
19         '../base/base.gyp:base',
20         '../base/base.gyp:base_prefs',
21         '../device/bluetooth/bluetooth.gyp:device_bluetooth',
22         '../net/net.gyp:net',
23       ],
24       'sources': [
25         "proximity_auth/authenticator.h",
26         "proximity_auth/ble/bluetooth_low_energy_characteristics_finder.cc",
27         "proximity_auth/ble/bluetooth_low_energy_characteristics_finder.h",
28         "proximity_auth/ble/bluetooth_low_energy_connection.cc",
29         "proximity_auth/ble/bluetooth_low_energy_connection.h",
30         "proximity_auth/ble/bluetooth_low_energy_connection_finder.cc",
31         "proximity_auth/ble/bluetooth_low_energy_connection_finder.h",
32         "proximity_auth/ble/bluetooth_low_energy_device_whitelist.cc",
33         "proximity_auth/ble/bluetooth_low_energy_device_whitelist.h",
34         "proximity_auth/ble/remote_attribute.h",
35         "proximity_auth/ble/fake_wire_message.cc",
36         "proximity_auth/ble/fake_wire_message.h",
37         "proximity_auth/ble/pref_names.cc",
38         "proximity_auth/ble/pref_names.h",
39         "proximity_auth/ble/proximity_auth_ble_system.cc",
40         "proximity_auth/ble/proximity_auth_ble_system.h",
41         "proximity_auth/bluetooth_connection.cc",
42         "proximity_auth/bluetooth_connection.h",
43         "proximity_auth/bluetooth_connection_finder.cc",
44         "proximity_auth/bluetooth_connection_finder.h",
45         "proximity_auth/bluetooth_throttler.h",
46         "proximity_auth/bluetooth_throttler_impl.cc",
47         "proximity_auth/bluetooth_throttler_impl.h",
48         "proximity_auth/bluetooth_util.cc",
49         "proximity_auth/bluetooth_util.h",
50         "proximity_auth/bluetooth_util_chromeos.cc",
51         "proximity_auth/client.h",
52         "proximity_auth/client_impl.cc",
53         "proximity_auth/client_impl.h",
54         "proximity_auth/client_observer.h",
55         "proximity_auth/connection.cc",
56         "proximity_auth/connection.h",
57         "proximity_auth/connection_finder.h",
58         "proximity_auth/connection_observer.h",
59         "proximity_auth/controller.h",
60         "proximity_auth/device_to_device_authenticator.cc",
61         "proximity_auth/device_to_device_authenticator.h",
62         "proximity_auth/device_to_device_initiator_operations.cc",
63         "proximity_auth/device_to_device_initiator_operations.h",
64         "proximity_auth/device_to_device_secure_context.cc",
65         "proximity_auth/device_to_device_secure_context.h",
66         "proximity_auth/metrics.cc",
67         "proximity_auth/metrics.h",
68         "proximity_auth/proximity_auth_client.h",
69         "proximity_auth/proximity_auth_system.cc",
70         "proximity_auth/proximity_auth_system.h",
71         "proximity_auth/proximity_monitor.h",
72         "proximity_auth/proximity_monitor_impl.cc",
73         "proximity_auth/proximity_monitor_impl.h",
74         "proximity_auth/proximity_monitor_observer.h",
75         "proximity_auth/remote_device.cc",
76         "proximity_auth/remote_device.h",
77         "proximity_auth/remote_status_update.cc",
78         "proximity_auth/remote_status_update.h",
79         "proximity_auth/screenlock_bridge.cc",
80         "proximity_auth/screenlock_bridge.h",
81         "proximity_auth/screenlock_state.h",
82         "proximity_auth/secure_context.h",
83         "proximity_auth/switches.cc",
84         "proximity_auth/switches.h",
85         "proximity_auth/throttled_bluetooth_connection_finder.cc",
86         "proximity_auth/throttled_bluetooth_connection_finder.h",
87         "proximity_auth/unlock_manager.cc",
88         "proximity_auth/unlock_manager.h",
89         "proximity_auth/wire_message.cc",
90         "proximity_auth/wire_message.h",
91       ],
93       'export_dependent_settings': [
94         'cryptauth_proto',
95       ],
96     },
97     {
98       'target_name': 'proximity_auth_test_support',
99       'type': 'static_library',
100       'include_dirs': [
101         '..',
102       ],
103       'dependencies': [
104         ':cryptauth_test_support',
105         '../base/base.gyp:base',
106       ],
107       'sources': [
108         "proximity_auth/device_to_device_responder_operations.cc",
109         "proximity_auth/device_to_device_responder_operations.h",
110       ],
111     },
112     {
113       # GN version: //components/proximity_auth/logging
114       'target_name': 'proximity_auth_logging',
115       'type': 'static_library',
116       'include_dirs': [
117         '..',
118       ],
119       'dependencies': [
120         '../base/base.gyp:base',
121       ],
122       'sources': [
123         "proximity_auth/logging/log_buffer.cc",
124         "proximity_auth/logging/log_buffer.h",
125         "proximity_auth/logging/logging.h",
126         "proximity_auth/logging/logging.cc",
127       ]
128     },
129     {
130       # GN version: //components/proximity_auth/cryptauth/proto
131       'target_name': 'cryptauth_proto',
132       'type': 'static_library',
133       'sources': [
134         'proximity_auth/cryptauth/proto/cryptauth_api.proto',
135         'proximity_auth/cryptauth/proto/securemessage.proto',
136       ],
137       'variables': {
138         'proto_in_dir': 'proximity_auth/cryptauth/proto',
139         'proto_out_dir': 'components/proximity_auth/cryptauth/proto',
140       },
141       'includes': [ '../build/protoc.gypi' ]
142     },
143     {
144       'target_name': 'cryptauth',
145       'type': 'static_library',
146       'include_dirs': [
147         '..',
148       ],
149       'dependencies': [
150         'cryptauth_proto',
151         '../base/base.gyp:base',
152         '../crypto/crypto.gyp:crypto',
153         '../components/components.gyp:gcm_driver',
154         '../google_apis/google_apis.gyp:google_apis',
155         '../net/net.gyp:net',
156       ],
157       'sources': [
158         "proximity_auth/cryptauth/base64url.cc",
159         "proximity_auth/cryptauth/base64url.h",
160         "proximity_auth/cryptauth/cryptauth_access_token_fetcher.h",
161         "proximity_auth/cryptauth/cryptauth_access_token_fetcher_impl.cc",
162         "proximity_auth/cryptauth/cryptauth_access_token_fetcher_impl.h",
163         "proximity_auth/cryptauth/cryptauth_api_call_flow.cc",
164         "proximity_auth/cryptauth/cryptauth_api_call_flow.h",
165         "proximity_auth/cryptauth/cryptauth_client.h",
166         "proximity_auth/cryptauth/cryptauth_client_impl.cc",
167         "proximity_auth/cryptauth/cryptauth_client_impl.h",
168         "proximity_auth/cryptauth/cryptauth_device_manager.cc",
169         "proximity_auth/cryptauth/cryptauth_device_manager.h",
170         "proximity_auth/cryptauth/cryptauth_enroller.h",
171         "proximity_auth/cryptauth/cryptauth_enroller_impl.cc",
172         "proximity_auth/cryptauth/cryptauth_enroller_impl.h",
173         "proximity_auth/cryptauth/cryptauth_enrollment_manager.cc",
174         "proximity_auth/cryptauth/cryptauth_enrollment_manager.h",
175         "proximity_auth/cryptauth/cryptauth_enrollment_utils.cc",
176         "proximity_auth/cryptauth/cryptauth_gcm_manager.cc",
177         "proximity_auth/cryptauth/cryptauth_gcm_manager.h",
178         "proximity_auth/cryptauth/cryptauth_gcm_manager_impl.cc",
179         "proximity_auth/cryptauth/cryptauth_gcm_manager_impl.h",
180         "proximity_auth/cryptauth/pref_names.cc",
181         "proximity_auth/cryptauth/pref_names.h",
182         "proximity_auth/cryptauth/secure_message_delegate.cc",
183         "proximity_auth/cryptauth/secure_message_delegate.h",
184         "proximity_auth/cryptauth/sync_scheduler.cc",
185         "proximity_auth/cryptauth/sync_scheduler.h",
186         "proximity_auth/cryptauth/sync_scheduler_impl.cc",
187         "proximity_auth/cryptauth/sync_scheduler_impl.h",
188       ],
189       'export_dependent_settings': [
190         'cryptauth_proto',
191       ],
192     },
193     {
194       'target_name': 'cryptauth_test_support',
195       'type': 'static_library',
196       'include_dirs': [
197         '..',
198       ],
199       'dependencies': [
200         'cryptauth_proto',
201         '../base/base.gyp:base',
202         '../testing/gmock.gyp:gmock',
203       ],
204       'sources': [
205         "proximity_auth/cryptauth/fake_cryptauth_gcm_manager.cc",
206         "proximity_auth/cryptauth/fake_cryptauth_gcm_manager.h",
207         "proximity_auth/cryptauth/fake_secure_message_delegate.cc",
208         "proximity_auth/cryptauth/fake_secure_message_delegate.h",
209         "proximity_auth/cryptauth/mock_cryptauth_client.cc",
210         "proximity_auth/cryptauth/mock_cryptauth_client.h",
211         "proximity_auth/cryptauth/mock_sync_scheduler.cc",
212         "proximity_auth/cryptauth/mock_sync_scheduler.h",
213       ],
214       'export_dependent_settings': [
215         'cryptauth_proto',
216       ],
217     },
218     {
219       # GN version: //components/proximity_auth/webui
220       'target_name': 'proximity_auth_webui',
221       'type': 'static_library',
222       'dependencies': [
223         '../base/base.gyp:base',
224         '../content/content.gyp:content_browser',
225         '../ui/resources/ui_resources.gyp:ui_resources',
226         'components_resources.gyp:components_resources',
227         'cryptauth',
228         'cryptauth_proto',
229         'proximity_auth',
230       ],
231       'include_dirs': [
232         '..',
233       ],
234       'sources': [
235         'proximity_auth/webui/cryptauth_enroller_factory_impl.cc',
236         'proximity_auth/webui/cryptauth_enroller_factory_impl.h',
237         'proximity_auth/webui/proximity_auth_ui.cc',
238         'proximity_auth/webui/proximity_auth_ui.h',
239         'proximity_auth/webui/proximity_auth_ui_delegate.h',
240         'proximity_auth/webui/proximity_auth_webui_handler.cc',
241         'proximity_auth/webui/proximity_auth_webui_handler.h',
242         'proximity_auth/webui/reachable_phone_flow.cc',
243         'proximity_auth/webui/reachable_phone_flow.h',
244         'proximity_auth/webui/url_constants.cc',
245         'proximity_auth/webui/url_constants.h',
246       ],
247     },
248   ],