blob: 2ba7e16ed186f175639fb32203036c46bef3c369 [file] [log] [blame]
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00001# 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.
4
5{
6 'targets': [
7 {
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +01008 # Private target only used in components/autofill.
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00009 'target_name': 'autofill_regexes',
10 'type': 'none',
11 'actions': [{
12 'action_name': 'autofill_regexes',
13 'inputs': [
14 '<(DEPTH)/build/escape_unicode.py',
Ben Murdocheb525c52013-07-10 11:40:50 +010015 'autofill/core/browser/autofill_regex_constants.cc.utf8',
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +000016 ],
17 'outputs': [
18 '<(SHARED_INTERMEDIATE_DIR)/autofill_regex_constants.cc',
19 ],
20 'action': ['python', '<(DEPTH)/build/escape_unicode.py',
21 '-o', '<(SHARED_INTERMEDIATE_DIR)',
Ben Murdocheb525c52013-07-10 11:40:50 +010022 'autofill/core/browser/autofill_regex_constants.cc.utf8'],
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +000023 }],
24 },
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +000025 ],
26 'conditions': [
27 ['OS != "ios"', {
28 'targets': [
29 {
Torne (Richard Coles)7d4cd472013-06-19 11:58:07 +010030 'target_name': 'autofill_core_common',
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +000031 'type': 'static_library',
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +000032 'dependencies': [
33 '../base/base.gyp:base',
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +000034 '../content/content.gyp:content_common',
35 '../ipc/ipc.gyp:ipc',
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +010036 '../third_party/WebKit/public/blink.gyp:blink',
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +000037 '../ui/ui.gyp:ui',
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +010038 '../url/url.gyp:url_lib',
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +000039 ],
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +010040 'conditions': [
41 ['OS == "android"', {
42 'dependencies': [
43 'autofill_jni_headers',
44 ],
45 }],
46 ],
47 'include_dirs': [
48 '..',
49 '<(SHARED_INTERMEDIATE_DIR)/autofill'
50 ],
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +000051 'sources': [
Ben Murdocheb525c52013-07-10 11:40:50 +010052 'autofill/core/browser/android/auxiliary_profile_loader_android.cc',
53 'autofill/core/browser/android/auxiliary_profile_loader_android.h',
54 'autofill/core/browser/android/auxiliary_profiles_android.cc',
55 'autofill/core/browser/android/auxiliary_profiles_android.h',
56 'autofill/core/browser/android/component_jni_registrar.cc',
57 'autofill/core/browser/android/component_jni_registrar.h',
58 'autofill/core/browser/android/personal_data_manager_android.cc',
Torne (Richard Coles)7d4cd472013-06-19 11:58:07 +010059 'autofill/core/common/autocheckout_status.h',
60 'autofill/core/common/autofill_constants.cc',
61 'autofill/core/common/autofill_constants.h',
62 'autofill/core/common/autofill_messages.h',
63 'autofill/core/common/autofill_message_generator.cc',
64 'autofill/core/common/autofill_message_generator.h',
65 'autofill/core/common/autofill_pref_names.cc',
66 'autofill/core/common/autofill_pref_names.h',
67 'autofill/core/common/autofill_switches.cc',
68 'autofill/core/common/autofill_switches.h',
69 'autofill/core/common/form_data.cc',
70 'autofill/core/common/form_data.h',
71 'autofill/core/common/form_data_predictions.cc',
72 'autofill/core/common/form_data_predictions.h',
73 'autofill/core/common/form_field_data.cc',
74 'autofill/core/common/form_field_data.h',
75 'autofill/core/common/form_field_data_predictions.cc',
76 'autofill/core/common/form_field_data_predictions.h',
77 'autofill/core/common/password_form_fill_data.cc',
78 'autofill/core/common/password_form_fill_data.h',
79 'autofill/core/common/password_generation_util.cc',
80 'autofill/core/common/password_generation_util.h',
81 'autofill/core/common/web_element_descriptor.cc',
82 'autofill/core/common/web_element_descriptor.h',
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +000083 ],
84 },
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +010085
86 {
Ben Murdocheb525c52013-07-10 11:40:50 +010087 'target_name': 'autofill_core_browser',
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +010088 'type': 'static_library',
89 'include_dirs': [
90 '..',
91 ],
92 'dependencies': [
Torne (Richard Coles)7d4cd472013-06-19 11:58:07 +010093 'autofill_core_common',
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +010094 'autofill_regexes',
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +010095 'encryptor',
Torne (Richard Coles)90dce4d2013-05-29 14:40:03 +010096 'user_prefs',
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +010097 'webdata_common',
98 '../base/base.gyp:base',
99 '../base/base.gyp:base_i18n',
Torne (Richard Coles)90dce4d2013-05-29 14:40:03 +0100100 '../base/base.gyp:base_prefs',
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +0100101 '../content/content.gyp:content_browser',
102 '../content/content.gyp:content_common',
Torne (Richard Coles)90dce4d2013-05-29 14:40:03 +0100103 '../google_apis/google_apis.gyp:google_apis',
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +0100104 '../ipc/ipc.gyp:ipc',
105 '../skia/skia.gyp:skia',
106 '../sql/sql.gyp:sql',
107 '../third_party/icu/icu.gyp:icui18n',
108 '../third_party/icu/icu.gyp:icuuc',
109 '../third_party/libjingle/libjingle.gyp:libjingle',
110 '../third_party/libphonenumber/libphonenumber.gyp:libphonenumber',
111 '../ui/ui.gyp:ui',
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +0100112 '../url/url.gyp:url_lib',
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +0100113 '../webkit/support/webkit_support.gyp:webkit_resources',
114
Torne (Richard Coles)7d4cd472013-06-19 11:58:07 +0100115 'component_strings.gyp:component_strings',
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +0100116 ],
117 'sources': [
Ben Murdocheb525c52013-07-10 11:40:50 +0100118 'autofill/core/browser/address.cc',
119 'autofill/core/browser/address.h',
120 'autofill/core/browser/address_field.cc',
121 'autofill/core/browser/address_field.h',
122 'autofill/core/browser/autocomplete_history_manager.cc',
123 'autofill/core/browser/autocomplete_history_manager.h',
124 'autofill/core/browser/autofill-inl.h',
125 'autofill/core/browser/autofill_country.cc',
126 'autofill/core/browser/autofill_country.h',
127 'autofill/core/browser/autofill_data_model.cc',
128 'autofill/core/browser/autofill_data_model.h',
129 'autofill/core/browser/autofill_download.cc',
130 'autofill/core/browser/autofill_download.h',
131 'autofill/core/browser/autofill_download_url.cc',
132 'autofill/core/browser/autofill_download_url.h',
133 'autofill/core/browser/autofill_driver.h',
134 'autofill/core/browser/autofill_external_delegate.cc',
135 'autofill/core/browser/autofill_external_delegate.h',
136 'autofill/core/browser/autofill_field.cc',
137 'autofill/core/browser/autofill_field.h',
138 'autofill/core/browser/autofill_ie_toolbar_import_win.cc',
139 'autofill/core/browser/autofill_ie_toolbar_import_win.h',
140 'autofill/core/browser/autofill_manager.cc',
141 'autofill/core/browser/autofill_manager.h',
142 'autofill/core/browser/autofill_manager_delegate.h',
143 'autofill/core/browser/autofill_manager_test_delegate.h',
144 'autofill/core/browser/autofill_metrics.cc',
145 'autofill/core/browser/autofill_metrics.h',
146 'autofill/core/browser/autofill_popup_delegate.h',
147 'autofill/core/browser/autofill_profile.cc',
148 'autofill/core/browser/autofill_profile.h',
149 'autofill/core/browser/autofill_regex_constants.cc.utf8',
150 'autofill/core/browser/autofill_regex_constants.h',
151 'autofill/core/browser/autofill_regexes.cc',
152 'autofill/core/browser/autofill_regexes.h',
153 'autofill/core/browser/autofill_scanner.cc',
154 'autofill/core/browser/autofill_scanner.h',
155 'autofill/core/browser/autofill_server_field_info.h',
156 'autofill/core/browser/autofill_type.cc',
157 'autofill/core/browser/autofill_type.h',
158 'autofill/core/browser/autofill_xml_parser.cc',
159 'autofill/core/browser/autofill_xml_parser.h',
160 'autofill/core/browser/contact_info.cc',
161 'autofill/core/browser/contact_info.h',
162 'autofill/core/browser/credit_card.cc',
163 'autofill/core/browser/credit_card.h',
164 'autofill/core/browser/credit_card_field.cc',
165 'autofill/core/browser/credit_card_field.h',
166 'autofill/core/browser/email_field.cc',
167 'autofill/core/browser/email_field.h',
168 'autofill/core/browser/field_types.h',
169 'autofill/core/browser/form_field.cc',
170 'autofill/core/browser/form_field.h',
171 'autofill/core/browser/form_group.cc',
172 'autofill/core/browser/form_group.h',
173 'autofill/core/browser/form_structure.cc',
174 'autofill/core/browser/form_structure.h',
175 'autofill/core/browser/name_field.cc',
176 'autofill/core/browser/name_field.h',
177 'autofill/core/browser/password_autofill_manager.cc',
178 'autofill/core/browser/password_autofill_manager.h',
179 'autofill/core/browser/password_generator.cc',
180 'autofill/core/browser/password_generator.h',
181 'autofill/core/browser/personal_data_manager.cc',
182 'autofill/core/browser/personal_data_manager.h',
183 'autofill/core/browser/personal_data_manager_mac.mm',
184 'autofill/core/browser/personal_data_manager_observer.h',
185 'autofill/core/browser/phone_field.cc',
186 'autofill/core/browser/phone_field.h',
187 'autofill/core/browser/phone_number.cc',
188 'autofill/core/browser/phone_number.h',
189 'autofill/core/browser/phone_number_i18n.cc',
190 'autofill/core/browser/phone_number_i18n.h',
191 'autofill/core/browser/state_names.cc',
192 'autofill/core/browser/state_names.h',
193 'autofill/core/browser/validation.cc',
194 'autofill/core/browser/validation.h',
195 'autofill/core/browser/webdata/autofill_change.cc',
196 'autofill/core/browser/webdata/autofill_change.h',
197 'autofill/core/browser/webdata/autofill_entry.cc',
198 'autofill/core/browser/webdata/autofill_entry.h',
199 'autofill/core/browser/webdata/autofill_table.cc',
200 'autofill/core/browser/webdata/autofill_table.h',
201 'autofill/core/browser/webdata/autofill_webdata.h',
202 'autofill/core/browser/webdata/autofill_webdata_backend.h',
203 'autofill/core/browser/webdata/autofill_webdata_backend_impl.cc',
204 'autofill/core/browser/webdata/autofill_webdata_backend_impl.h',
205 'autofill/core/browser/webdata/autofill_webdata_service.cc',
206 'autofill/core/browser/webdata/autofill_webdata_service.h',
207 'autofill/core/browser/webdata/autofill_webdata_service_observer.h',
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +0100208
209 # This file is generated by the autofill_regexes action.
210 '<(SHARED_INTERMEDIATE_DIR)/autofill_regex_constants.cc',
211 ],
212
213 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
214 'msvs_disabled_warnings': [4267, ],
215 },
216
217 {
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +0100218 # Protobuf compiler / generate rule for Autofill's risk integration.
219 'target_name': 'autofill_content_risk_proto',
220 'type': 'static_library',
221 'sources': [
222 'autofill/content/browser/risk/proto/fingerprint.proto',
223 ],
224 'variables': {
225 'proto_in_dir': 'autofill/content/browser/risk/proto',
226 'proto_out_dir': 'components/autofill/content/browser/risk/proto',
227 },
228 'includes': [ '../build/protoc.gypi' ]
229 },
230 {
231 'target_name': 'autofill_content_test_util',
232 'type': 'static_library',
233 'sources': [
234 'autofill/content/browser/wallet/wallet_test_util.cc',
235 'autofill/content/browser/wallet/wallet_test_util.h',
236 ],
237 'include_dirs': [ '..' ],
238 },
239 {
240 'target_name': 'autofill_content_browser',
241 'type': 'static_library',
242 'include_dirs': [
243 '..',
244 ],
245 'dependencies': [
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +0100246 'autofill_content_risk_proto',
Ben Murdocheb525c52013-07-10 11:40:50 +0100247 'autofill_core_browser',
Torne (Richard Coles)7d4cd472013-06-19 11:58:07 +0100248 'autofill_core_common',
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +0100249 'autofill_regexes',
250 'encryptor',
251 'user_prefs',
252 'webdata_common',
253 '../base/base.gyp:base',
254 '../base/base.gyp:base_i18n',
255 '../base/base.gyp:base_prefs',
256 '../content/content.gyp:content_browser',
257 '../content/content.gyp:content_common',
258 '../google_apis/google_apis.gyp:google_apis',
259 '../ipc/ipc.gyp:ipc',
260 '../skia/skia.gyp:skia',
261 '../sql/sql.gyp:sql',
262 '../third_party/icu/icu.gyp:icui18n',
263 '../third_party/icu/icu.gyp:icuuc',
264 '../third_party/libjingle/libjingle.gyp:libjingle',
265 '../third_party/libphonenumber/libphonenumber.gyp:libphonenumber',
266 '../ui/ui.gyp:ui',
267 '../url/url.gyp:url_lib',
268 '../webkit/support/webkit_support.gyp:webkit_resources',
269
Torne (Richard Coles)7d4cd472013-06-19 11:58:07 +0100270 'component_strings.gyp:component_strings',
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +0100271 ],
272 'sources': [
Torne (Richard Coles)7d4cd472013-06-19 11:58:07 +0100273 'autofill/content/browser/autocheckout/whitelist_manager.cc',
274 'autofill/content/browser/autocheckout/whitelist_manager.h',
275 'autofill/content/browser/autocheckout_manager.cc',
276 'autofill/content/browser/autocheckout_manager.h',
277 'autofill/content/browser/autocheckout_page_meta_data.cc',
278 'autofill/content/browser/autocheckout_page_meta_data.h',
279 'autofill/content/browser/autocheckout_request_manager.cc',
280 'autofill/content/browser/autocheckout_request_manager.h',
Ben Murdocheb525c52013-07-10 11:40:50 +0100281 'autofill/content/browser/autocheckout_statistic.cc',
282 'autofill/content/browser/autocheckout_statistic.h',
283 'autofill/content/browser/autocheckout_steps.h',
Torne (Richard Coles)7d4cd472013-06-19 11:58:07 +0100284 'autofill/content/browser/autofill_driver_impl.cc',
285 'autofill/content/browser/autofill_driver_impl.h',
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +0100286 'autofill/content/browser/risk/fingerprint.cc',
287 'autofill/content/browser/risk/fingerprint.h',
288 'autofill/content/browser/wallet/encryption_escrow_client.cc',
289 'autofill/content/browser/wallet/encryption_escrow_client.h',
290 'autofill/content/browser/wallet/encryption_escrow_client_observer.h',
Torne (Richard Coles)7d4cd472013-06-19 11:58:07 +0100291 'autofill/content/browser/wallet/form_field_error.cc',
292 'autofill/content/browser/wallet/form_field_error.h',
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +0100293 'autofill/content/browser/wallet/full_wallet.cc',
294 'autofill/content/browser/wallet/full_wallet.h',
295 'autofill/content/browser/wallet/instrument.cc',
296 'autofill/content/browser/wallet/instrument.h',
297 'autofill/content/browser/wallet/required_action.cc',
298 'autofill/content/browser/wallet/required_action.h',
299 'autofill/content/browser/wallet/wallet_address.cc',
300 'autofill/content/browser/wallet/wallet_address.h',
301 'autofill/content/browser/wallet/wallet_client.cc',
302 'autofill/content/browser/wallet/wallet_client.h',
303 'autofill/content/browser/wallet/wallet_client_delegate.h',
304 'autofill/content/browser/wallet/wallet_items.cc',
305 'autofill/content/browser/wallet/wallet_items.h',
306 'autofill/content/browser/wallet/wallet_service_url.cc',
307 'autofill/content/browser/wallet/wallet_service_url.h',
308 'autofill/content/browser/wallet/wallet_signin_helper.cc',
309 'autofill/content/browser/wallet/wallet_signin_helper.h',
310 ],
311
312 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
313 'msvs_disabled_warnings': [4267, ],
314 },
315
316 {
317 'target_name': 'autofill_content_renderer',
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +0100318 'type': 'static_library',
319 'include_dirs': [
320 '..',
321 ],
322 'dependencies': [
Torne (Richard Coles)7d4cd472013-06-19 11:58:07 +0100323 'autofill_core_common',
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +0100324 '../base/base.gyp:base',
325 '../content/content.gyp:content_renderer',
326 '../content/content.gyp:content_common',
327 '../ipc/ipc.gyp:ipc',
328 '../skia/skia.gyp:skia',
329
Torne (Richard Coles)7d4cd472013-06-19 11:58:07 +0100330 'component_strings.gyp:component_strings',
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +0100331 ],
332 'sources': [
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +0100333 'autofill/content/renderer/autofill_agent.cc',
334 'autofill/content/renderer/autofill_agent.h',
335 'autofill/content/renderer/form_autofill_util.cc',
336 'autofill/content/renderer/form_autofill_util.h',
337 'autofill/content/renderer/form_cache.cc',
338 'autofill/content/renderer/form_cache.h',
339 'autofill/content/renderer/page_click_listener.h',
340 'autofill/content/renderer/page_click_tracker.cc',
341 'autofill/content/renderer/page_click_tracker.h',
342 'autofill/content/renderer/password_autofill_agent.cc',
343 'autofill/content/renderer/password_autofill_agent.h',
344 'autofill/content/renderer/password_generation_manager.cc',
345 'autofill/content/renderer/password_generation_manager.h',
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +0100346 ],
347 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
348 'msvs_disabled_warnings': [4267, ],
349 },
350 ],
351 }],
352 ['OS == "android"', {
353 'targets': [
354 {
355 'target_name': 'autofill_java',
356 'type': 'none',
357 'dependencies': [
358 '../base/base.gyp:base',
359 '../content/content.gyp:content_java',
360 ],
361 'variables': {
Ben Murdocheb525c52013-07-10 11:40:50 +0100362 'java_in_dir': 'autofill/core/browser/android/java',
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +0100363 },
364 'includes': [ '../build/java.gypi' ],
365 },
366 {
367 'target_name': 'autofill_jni_headers',
368 'type': 'none',
369 'sources': [
Ben Murdocheb525c52013-07-10 11:40:50 +0100370 'autofill/core/browser/android/java/src/org/chromium/components/browser/autofill/PersonalAutofillPopulator.java',
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +0100371 ],
372 'variables': {
373 'jni_gen_package': 'autofill',
374 },
375 'includes': [ '../build/jni_generator.gypi' ],
376 },
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000377 ],
378 }],
379 ],
380}