Permission message rules: Each rule must have >= 1 required permissions
[chromium-blink-merge.git] / components / proximity_auth.gypi
blob1d50544498fca5c82b9e763075a6d973e21d81be
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         '../testing/gmock.gyp:gmock',
107       ],
108       'sources': [
109         "proximity_auth/device_to_device_responder_operations.cc",
110         "proximity_auth/device_to_device_responder_operations.h",
111         "proximity_auth/mock_proximity_auth_client.cc",
112         "proximity_auth/mock_proximity_auth_client.h",
113       ],
114     },
115     {
116       # GN version: //components/proximity_auth/logging
117       'target_name': 'proximity_auth_logging',
118       'type': 'static_library',
119       'include_dirs': [
120         '..',
121       ],
122       'dependencies': [
123         '../base/base.gyp:base',
124       ],
125       'sources': [
126         "proximity_auth/logging/log_buffer.cc",
127         "proximity_auth/logging/log_buffer.h",
128         "proximity_auth/logging/logging.h",
129         "proximity_auth/logging/logging.cc",
130       ]
131     },
132     {
133       # GN version: //components/proximity_auth/cryptauth/proto
134       'target_name': 'cryptauth_proto',
135       'type': 'static_library',
136       'sources': [
137         'proximity_auth/cryptauth/proto/cryptauth_api.proto',
138         'proximity_auth/cryptauth/proto/securemessage.proto',
139       ],
140       'variables': {
141         'proto_in_dir': 'proximity_auth/cryptauth/proto',
142         'proto_out_dir': 'components/proximity_auth/cryptauth/proto',
143       },
144       'includes': [ '../build/protoc.gypi' ]
145     },
146     {
147       'target_name': 'cryptauth',
148       'type': 'static_library',
149       'include_dirs': [
150         '..',
151       ],
152       'dependencies': [
153         'cryptauth_proto',
154         '../base/base.gyp:base',
155         '../crypto/crypto.gyp:crypto',
156         '../components/components.gyp:gcm_driver',
157         '../google_apis/google_apis.gyp:google_apis',
158         '../net/net.gyp:net',
159       ],
160       'sources': [
161         "proximity_auth/cryptauth/base64url.cc",
162         "proximity_auth/cryptauth/base64url.h",
163         "proximity_auth/cryptauth/cryptauth_access_token_fetcher.h",
164         "proximity_auth/cryptauth/cryptauth_access_token_fetcher_impl.cc",
165         "proximity_auth/cryptauth/cryptauth_access_token_fetcher_impl.h",
166         "proximity_auth/cryptauth/cryptauth_api_call_flow.cc",
167         "proximity_auth/cryptauth/cryptauth_api_call_flow.h",
168         "proximity_auth/cryptauth/cryptauth_client.h",
169         "proximity_auth/cryptauth/cryptauth_client_impl.cc",
170         "proximity_auth/cryptauth/cryptauth_client_impl.h",
171         "proximity_auth/cryptauth/cryptauth_device_manager.cc",
172         "proximity_auth/cryptauth/cryptauth_device_manager.h",
173         "proximity_auth/cryptauth/cryptauth_enroller.h",
174         "proximity_auth/cryptauth/cryptauth_enroller_impl.cc",
175         "proximity_auth/cryptauth/cryptauth_enroller_impl.h",
176         "proximity_auth/cryptauth/cryptauth_enrollment_manager.cc",
177         "proximity_auth/cryptauth/cryptauth_enrollment_manager.h",
178         "proximity_auth/cryptauth/cryptauth_enrollment_utils.cc",
179         "proximity_auth/cryptauth/cryptauth_gcm_manager.cc",
180         "proximity_auth/cryptauth/cryptauth_gcm_manager.h",
181         "proximity_auth/cryptauth/cryptauth_gcm_manager_impl.cc",
182         "proximity_auth/cryptauth/cryptauth_gcm_manager_impl.h",
183         "proximity_auth/cryptauth/pref_names.cc",
184         "proximity_auth/cryptauth/pref_names.h",
185         "proximity_auth/cryptauth/secure_message_delegate.cc",
186         "proximity_auth/cryptauth/secure_message_delegate.h",
187         "proximity_auth/cryptauth/sync_scheduler.cc",
188         "proximity_auth/cryptauth/sync_scheduler.h",
189         "proximity_auth/cryptauth/sync_scheduler_impl.cc",
190         "proximity_auth/cryptauth/sync_scheduler_impl.h",
191       ],
192       'export_dependent_settings': [
193         'cryptauth_proto',
194       ],
195     },
196     {
197       'target_name': 'cryptauth_test_support',
198       'type': 'static_library',
199       'include_dirs': [
200         '..',
201       ],
202       'dependencies': [
203         'cryptauth_proto',
204         '../base/base.gyp:base',
205         '../testing/gmock.gyp:gmock',
206       ],
207       'sources': [
208         "proximity_auth/cryptauth/fake_cryptauth_gcm_manager.cc",
209         "proximity_auth/cryptauth/fake_cryptauth_gcm_manager.h",
210         "proximity_auth/cryptauth/fake_secure_message_delegate.cc",
211         "proximity_auth/cryptauth/fake_secure_message_delegate.h",
212         "proximity_auth/cryptauth/mock_cryptauth_client.cc",
213         "proximity_auth/cryptauth/mock_cryptauth_client.h",
214         "proximity_auth/cryptauth/mock_sync_scheduler.cc",
215         "proximity_auth/cryptauth/mock_sync_scheduler.h",
216       ],
217       'export_dependent_settings': [
218         'cryptauth_proto',
219       ],
220     },
221     {
222       # GN version: //components/proximity_auth/webui
223       'target_name': 'proximity_auth_webui',
224       'type': 'static_library',
225       'dependencies': [
226         '../base/base.gyp:base',
227         '../content/content.gyp:content_browser',
228         '../ui/resources/ui_resources.gyp:ui_resources',
229         'components_resources.gyp:components_resources',
230         'cryptauth',
231         'cryptauth_proto',
232         'proximity_auth',
233       ],
234       'include_dirs': [
235         '..',
236       ],
237       'sources': [
238         'proximity_auth/webui/proximity_auth_ui.cc',
239         'proximity_auth/webui/proximity_auth_ui.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   ],