Certificate Transparency: Require SCTs for EV certificates.
[chromium-blink-merge.git] / components / autofill.gypi
blobccaddc410cb1bdd24375ba55ac6efb40bf046cf5
1 # Copyright (c) 2013 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       # Private target only used in components/autofill.
9       # GN version: //components/autofill/core/browser:regexes
10       'target_name': 'autofill_regexes',
11       'type': 'none',
12       'actions': [{
13         'action_name': 'autofill_regexes',
14         'inputs': [
15           '<(DEPTH)/build/escape_unicode.py',
16           'autofill/core/browser/autofill_regex_constants.cc.utf8',
17         ],
18         'outputs': [
19           '<(SHARED_INTERMEDIATE_DIR)/autofill_regex_constants.cc',
20         ],
21         'action': ['python', '<(DEPTH)/build/escape_unicode.py',
22                    '-o', '<(SHARED_INTERMEDIATE_DIR)',
23                    'autofill/core/browser/autofill_regex_constants.cc.utf8'],
24       }],
25     },
27     {
28       # GN version: //components/autofill/core/common
29       'target_name': 'autofill_core_common',
30       'type': 'static_library',
31       'dependencies': [
32         '../base/base.gyp:base',
33         '../base/base.gyp:base_i18n',
34         '../ui/base/ui_base.gyp:ui_base',
35         '../ui/gfx/gfx.gyp:gfx',
36         '../url/url.gyp:url_lib',
37       ],
38       'include_dirs': [
39         '..',
40       ],
41       'sources': [
42         'autofill/core/common/autofill_constants.cc',
43         'autofill/core/common/autofill_constants.h',
44         'autofill/core/common/autofill_data_validation.cc',
45         'autofill/core/common/autofill_data_validation.h',
46         'autofill/core/common/autofill_pref_names.cc',
47         'autofill/core/common/autofill_pref_names.h',
48         'autofill/core/common/autofill_switches.cc',
49         'autofill/core/common/autofill_switches.h',
50         'autofill/core/common/form_data.cc',
51         'autofill/core/common/form_data.h',
52         'autofill/core/common/form_data_predictions.cc',
53         'autofill/core/common/form_data_predictions.h',
54         'autofill/core/common/form_field_data.cc',
55         'autofill/core/common/form_field_data.h',
56         'autofill/core/common/form_field_data_predictions.cc',
57         'autofill/core/common/form_field_data_predictions.h',
58         'autofill/core/common/password_form.cc',
59         'autofill/core/common/password_form.h',
60         'autofill/core/common/password_form_fill_data.cc',
61         'autofill/core/common/password_form_fill_data.h',
62         'autofill/core/common/password_generation_util.cc',
63         'autofill/core/common/password_generation_util.h',
64         'autofill/core/common/save_password_progress_logger.cc',
65         'autofill/core/common/save_password_progress_logger.h',
66         'autofill/core/common/web_element_descriptor.cc',
67         'autofill/core/common/web_element_descriptor.h',
68       ],
69     },
71     {
72       # GN version: //components/autofill/core/browser
73       'target_name': 'autofill_core_browser',
74       'type': 'static_library',
75       'include_dirs': [
76         '..',
77       ],
78       'dependencies': [
79         '../base/base.gyp:base',
80         '../base/base.gyp:base_i18n',
81         '../base/base.gyp:base_prefs',
82         '../google_apis/google_apis.gyp:google_apis',
83         '../net/net.gyp:net',
84         '../skia/skia.gyp:skia',
85         '../sql/sql.gyp:sql',
86         '../third_party/fips181/fips181.gyp:fips181',
87         '../third_party/icu/icu.gyp:icui18n',
88         '../third_party/icu/icu.gyp:icuuc',
89         '../third_party/libjingle/libjingle.gyp:libjingle',
90         '../third_party/libaddressinput/libaddressinput.gyp:libaddressinput_util',
91         '../third_party/libphonenumber/libphonenumber.gyp:libphonenumber',
92         '../ui/base/ui_base.gyp:ui_base',
93         '../ui/gfx/gfx.gyp:gfx',
94         '../ui/gfx/gfx.gyp:gfx_geometry',
95         '../url/url.gyp:url_lib',
96         'autofill_core_common',
97         'autofill_regexes',
98         'components_resources.gyp:components_resources',
99         'components_strings.gyp:components_strings',
100         'keyed_service_core',
101         'os_crypt',
102         'pref_registry',
103         'webdata_common',
104       ],
105       'sources': [
106         'autofill/core/browser/address.cc',
107         'autofill/core/browser/address.h',
108         'autofill/core/browser/address_field.cc',
109         'autofill/core/browser/address_field.h',
110         'autofill/core/browser/address_i18n.cc',
111         'autofill/core/browser/address_i18n.h',
112         'autofill/core/browser/autocomplete_history_manager.cc',
113         'autofill/core/browser/autocomplete_history_manager.h',
114         'autofill/core/browser/autofill-inl.h',
115         'autofill/core/browser/autofill_country.cc',
116         'autofill/core/browser/autofill_country.h',
117         'autofill/core/browser/autofill_data_model.cc',
118         'autofill/core/browser/autofill_data_model.h',
119         'autofill/core/browser/autofill_download_manager.cc',
120         'autofill/core/browser/autofill_download_manager.h',
121         'autofill/core/browser/autofill_driver.h',
122         'autofill/core/browser/autofill_external_delegate.cc',
123         'autofill/core/browser/autofill_external_delegate.h',
124         'autofill/core/browser/autofill_field.cc',
125         'autofill/core/browser/autofill_field.h',
126         'autofill/core/browser/autofill_ie_toolbar_import_win.cc',
127         'autofill/core/browser/autofill_ie_toolbar_import_win.h',
128         'autofill/core/browser/autofill_manager.cc',
129         'autofill/core/browser/autofill_manager.h',
130         'autofill/core/browser/autofill_client.h',
131         'autofill/core/browser/autofill_manager_test_delegate.h',
132         'autofill/core/browser/autofill_metrics.cc',
133         'autofill/core/browser/autofill_metrics.h',
134         'autofill/core/browser/autofill_popup_delegate.h',
135         'autofill/core/browser/autofill_profile.cc',
136         'autofill/core/browser/autofill_profile.h',
137         'autofill/core/browser/autofill_regex_constants.cc.utf8',
138         'autofill/core/browser/autofill_regex_constants.h',
139         'autofill/core/browser/autofill_regexes.cc',
140         'autofill/core/browser/autofill_regexes.h',
141         'autofill/core/browser/autofill_scanner.cc',
142         'autofill/core/browser/autofill_scanner.h',
143         'autofill/core/browser/autofill_server_field_info.h',
144         'autofill/core/browser/autofill_type.cc',
145         'autofill/core/browser/autofill_type.h',
146         'autofill/core/browser/autofill_xml_parser.cc',
147         'autofill/core/browser/autofill_xml_parser.h',
148         'autofill/core/browser/contact_info.cc',
149         'autofill/core/browser/contact_info.h',
150         'autofill/core/browser/credit_card.cc',
151         'autofill/core/browser/credit_card.h',
152         'autofill/core/browser/credit_card_field.cc',
153         'autofill/core/browser/credit_card_field.h',
154         'autofill/core/browser/email_field.cc',
155         'autofill/core/browser/email_field.h',
156         'autofill/core/browser/field_types.h',
157         'autofill/core/browser/form_field.cc',
158         'autofill/core/browser/form_field.h',
159         'autofill/core/browser/form_group.cc',
160         'autofill/core/browser/form_group.h',
161         'autofill/core/browser/form_structure.cc',
162         'autofill/core/browser/form_structure.h',
163         'autofill/core/browser/name_field.cc',
164         'autofill/core/browser/name_field.h',
165         'autofill/core/browser/password_generator.cc',
166         'autofill/core/browser/password_generator.h',
167         'autofill/core/browser/personal_data_manager.cc',
168         'autofill/core/browser/personal_data_manager.h',
169         'autofill/core/browser/personal_data_manager_mac.mm',
170         'autofill/core/browser/personal_data_manager_observer.h',
171         'autofill/core/browser/phone_field.cc',
172         'autofill/core/browser/phone_field.h',
173         'autofill/core/browser/phone_number.cc',
174         'autofill/core/browser/phone_number.h',
175         'autofill/core/browser/phone_number_i18n.cc',
176         'autofill/core/browser/phone_number_i18n.h',
177         'autofill/core/browser/popup_item_ids.h',
178         'autofill/core/browser/state_names.cc',
179         'autofill/core/browser/state_names.h',
180         'autofill/core/browser/validation.cc',
181         'autofill/core/browser/validation.h',
182         'autofill/core/browser/webdata/autofill_change.cc',
183         'autofill/core/browser/webdata/autofill_change.h',
184         'autofill/core/browser/webdata/autofill_entry.cc',
185         'autofill/core/browser/webdata/autofill_entry.h',
186         'autofill/core/browser/webdata/autofill_profile_syncable_service.cc',
187         'autofill/core/browser/webdata/autofill_profile_syncable_service.h',
188         'autofill/core/browser/webdata/autofill_table.cc',
189         'autofill/core/browser/webdata/autofill_table.h',
190         'autofill/core/browser/webdata/autofill_webdata.h',
191         'autofill/core/browser/webdata/autofill_webdata_backend.h',
192         'autofill/core/browser/webdata/autofill_webdata_backend_impl.cc',
193         'autofill/core/browser/webdata/autofill_webdata_backend_impl.h',
194         'autofill/core/browser/webdata/autofill_webdata_service.cc',
195         'autofill/core/browser/webdata/autofill_webdata_service.h',
196         'autofill/core/browser/webdata/autofill_webdata_service_observer.h',
198         # This file is generated by the autofill_regexes action.
199         '<(SHARED_INTERMEDIATE_DIR)/autofill_regex_constants.cc',
200       ],
201       'variables': {
202         'conditions': [
203           ['android_webview_build == 1', {
204             # Android WebView doesn't support sync.
205             'autofill_enable_sync%': 0,
206           }, {
207             'autofill_enable_sync%': 1,
208           }],
209         ],
210       },
211       'conditions': [
212         ['autofill_enable_sync == 1', {
213           'defines': [
214             'AUTOFILL_ENABLE_SYNC',
215           ],
216           'dependencies': [
217             '../sync/sync.gyp:sync',
218           ],
219           'direct_dependent_settings': {
220             'defines': [
221               'AUTOFILL_ENABLE_SYNC',
222             ],
223           },
224         }, { # 'autofill_enable_sync == 0'
225           'sources!': [
226             'autofill/core/browser/webdata/autofill_profile_syncable_service.cc',
227             'autofill/core/browser/webdata/autofill_profile_syncable_service.h',
228           ],
229         }],
230       ],
232       # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
233       'msvs_disabled_warnings': [4267, ],
234     },
236     {
237       # GN version: //components/autofill/core/browser:test_support
238       'target_name': 'autofill_core_test_support',
239       'type': 'static_library',
240       'dependencies': [
241         '../base/base.gyp:base',
242         '../base/base.gyp:base_prefs',
243         '../base/base.gyp:test_support_base',
244         '../skia/skia.gyp:skia',
245         '../testing/gtest.gyp:gtest',
246         'autofill_core_common',
247         'autofill_core_browser',
248         'os_crypt',
249         'pref_registry',
250       ],
251       'sources': [
252         'autofill/core/browser/autofill_test_utils.cc',
253         'autofill/core/browser/autofill_test_utils.h',
254         'autofill/core/browser/data_driven_test.cc',
255         'autofill/core/browser/data_driven_test.h',
256         'autofill/core/browser/test_autofill_client.cc',
257         'autofill/core/browser/test_autofill_client.h',
258         'autofill/core/browser/test_autofill_driver.cc',
259         'autofill/core/browser/test_autofill_driver.h',
260         'autofill/core/browser/test_autofill_external_delegate.cc',
261         'autofill/core/browser/test_autofill_external_delegate.h',
262         'autofill/core/browser/test_personal_data_manager.cc',
263         'autofill/core/browser/test_personal_data_manager.h',
264       ],
265     },
266   ],
267   'conditions': [
268     ['OS != "ios"', {
269       'targets': [
270         {
271           # GN version: //content/autofill/content/common
272           'target_name': 'autofill_content_common',
273           'type': 'static_library',
274           'dependencies': [
275             'autofill_core_common',
276             '../base/base.gyp:base',
277             '../content/content.gyp:content_common',
278             '../ipc/ipc.gyp:ipc',
279             '../third_party/WebKit/public/blink.gyp:blink_minimal',
280             '../ui/gfx/gfx.gyp:gfx',
281             '../ui/gfx/ipc/gfx_ipc.gyp:gfx_ipc',
282             '../url/url.gyp:url_lib',
283           ],
284           'include_dirs': [
285             '..',
286           ],
287           'sources': [
288             'autofill/content/common/autofill_message_generator.cc',
289             'autofill/content/common/autofill_message_generator.h',
290             'autofill/content/common/autofill_messages.h',
291             'autofill/content/common/autofill_param_traits_macros.h',
292           ],
293         },
295         {
296           # Protobuf compiler / generate rule for Autofill's risk integration.
297           # GN version: //components/autofill/content/browser:risk_proto
298           'target_name': 'autofill_content_risk_proto',
299           'type': 'static_library',
300           'sources': [
301             'autofill/content/browser/risk/proto/fingerprint.proto',
302           ],
303           'variables': {
304             'proto_in_dir': 'autofill/content/browser/risk/proto',
305             'proto_out_dir': 'components/autofill/content/browser/risk/proto',
306           },
307           'includes': [ '../build/protoc.gypi' ]
308         },
309        {
310          # GN version: //components/autofill/content/browser:test_support
311          'target_name': 'autofill_content_test_support',
312          'type': 'static_library',
313          'dependencies': [
314             '../testing/gmock.gyp:gmock',
315          ],
316          'sources': [
317            'autofill/content/browser/wallet/mock_wallet_client.cc',
318            'autofill/content/browser/wallet/mock_wallet_client.h',
319            'autofill/content/browser/wallet/wallet_test_util.cc',
320            'autofill/content/browser/wallet/wallet_test_util.h',
321          ],
322          'include_dirs': [ '..' ],
323        },
324        {
325           # GN version: //components/autofill/content/browser
326           'target_name': 'autofill_content_browser',
327           'type': 'static_library',
328           'include_dirs': [
329             '..',
330           ],
331           'dependencies': [
332             '../base/base.gyp:base',
333             '../base/base.gyp:base_i18n',
334             '../base/base.gyp:base_prefs',
335             '../content/content.gyp:content_browser',
336             '../content/content.gyp:content_common',
337             '../google_apis/google_apis.gyp:google_apis',
338             '../ipc/ipc.gyp:ipc',
339             '../net/net.gyp:net',
340             '../skia/skia.gyp:skia',
341             '../sql/sql.gyp:sql',
342             '../third_party/icu/icu.gyp:icui18n',
343             '../third_party/icu/icu.gyp:icuuc',
344             '../third_party/libjingle/libjingle.gyp:libjingle',
345             '../third_party/libphonenumber/libphonenumber.gyp:libphonenumber',
346             '../ui/base/ui_base.gyp:ui_base',
347             '../ui/gfx/gfx.gyp:gfx',
348             '../ui/gfx/gfx.gyp:gfx_geometry',
349             '../url/url.gyp:url_lib',
350             'autofill_content_common',
351             'autofill_content_risk_proto',
352             'autofill_core_browser',
353             'autofill_core_common',
354             'autofill_regexes',
355             'components_resources.gyp:components_resources',
356             'components_strings.gyp:components_strings',
357             'os_crypt',
358             'user_prefs',
359             'webdata_common',
360           ],
361           'sources': [
362             'autofill/content/browser/content_autofill_driver.cc',
363             'autofill/content/browser/content_autofill_driver.h',
364             'autofill/content/browser/content_autofill_driver_factory.cc',
365             'autofill/content/browser/content_autofill_driver_factory.h',
366             'autofill/content/browser/request_autocomplete_manager.cc',
367             'autofill/content/browser/request_autocomplete_manager.h',
368             'autofill/content/browser/risk/fingerprint.cc',
369             'autofill/content/browser/risk/fingerprint.h',
370             'autofill/content/browser/wallet/form_field_error.cc',
371             'autofill/content/browser/wallet/form_field_error.h',
372             'autofill/content/browser/wallet/full_wallet.cc',
373             'autofill/content/browser/wallet/full_wallet.h',
374             'autofill/content/browser/wallet/gaia_account.cc',
375             'autofill/content/browser/wallet/gaia_account.h',
376             'autofill/content/browser/wallet/instrument.cc',
377             'autofill/content/browser/wallet/instrument.h',
378             'autofill/content/browser/wallet/required_action.cc',
379             'autofill/content/browser/wallet/required_action.h',
380             'autofill/content/browser/wallet/wallet_address.cc',
381             'autofill/content/browser/wallet/wallet_address.h',
382             'autofill/content/browser/wallet/wallet_client.cc',
383             'autofill/content/browser/wallet/wallet_client.h',
384             'autofill/content/browser/wallet/wallet_client_delegate.h',
385             'autofill/content/browser/wallet/wallet_items.cc',
386             'autofill/content/browser/wallet/wallet_items.h',
387             'autofill/content/browser/wallet/wallet_service_url.cc',
388             'autofill/content/browser/wallet/wallet_service_url.h',
389             'autofill/content/browser/wallet/wallet_signin_helper.cc',
390             'autofill/content/browser/wallet/wallet_signin_helper.h',
391           ],
393           # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
394           'msvs_disabled_warnings': [4267, ],
396           'conditions': [
397             [ 'OS == "android"', {
398               'sources!': [
399                 'autofill/content/browser/risk/fingerprint.cc',
400                 'autofill/content/browser/risk/fingerprint.h',
401               ],
402             }],
403           ],
404         },
406         {
407           # GN version: //components/autofill/content/renderer
408           'target_name': 'autofill_content_renderer',
409           'type': 'static_library',
410           'include_dirs': [
411             '..',
412           ],
413           'dependencies': [
414             '../base/base.gyp:base',
415             '../content/content.gyp:content_common',
416             '../content/content.gyp:content_renderer',
417             '../google_apis/google_apis.gyp:google_apis',
418             '../ipc/ipc.gyp:ipc',
419             '../net/net.gyp:net',
420             '../skia/skia.gyp:skia',
421             '../third_party/WebKit/public/blink.gyp:blink',
422             '../ui/base/ui_base.gyp:ui_base',
423             'autofill_content_common',
424             'autofill_core_common',
425             'components_strings.gyp:components_strings',
426           ],
427           'sources': [
428             'autofill/content/renderer/autofill_agent.cc',
429             'autofill/content/renderer/autofill_agent.h',
430             'autofill/content/renderer/form_autofill_util.cc',
431             'autofill/content/renderer/form_autofill_util.h',
432             'autofill/content/renderer/form_cache.cc',
433             'autofill/content/renderer/form_cache.h',
434             'autofill/content/renderer/page_click_listener.h',
435             'autofill/content/renderer/page_click_tracker.cc',
436             'autofill/content/renderer/page_click_tracker.h',
437             'autofill/content/renderer/password_autofill_agent.cc',
438             'autofill/content/renderer/password_autofill_agent.h',
439             'autofill/content/renderer/password_form_conversion_utils.cc',
440             'autofill/content/renderer/password_form_conversion_utils.h',
441             'autofill/content/renderer/password_generation_agent.cc',
442             'autofill/content/renderer/password_generation_agent.h',
443             'autofill/content/renderer/renderer_save_password_progress_logger.cc',
444             'autofill/content/renderer/renderer_save_password_progress_logger.h',
445           ],
446           # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
447           'msvs_disabled_warnings': [4267, ],
448         },
449       ],
450     }],
451   ],