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