blob: 87660f705c95f12ae19bf16f3ebfbd816b95d5e0 [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',
Ben Murdochca12bfa2013-07-23 11:17:05 +010036 '../third_party/WebKit/public/blink.gyp:blink_minimal',
Torne (Richard Coles)4e180b62013-10-18 15:46:22 +010037 '../ui/gfx/gfx.gyp:gfx',
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +000038 '../ui/ui.gyp:ui',
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +010039 '../url/url.gyp:url_lib',
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +000040 ],
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +010041 'conditions': [
42 ['OS == "android"', {
43 'dependencies': [
44 'autofill_jni_headers',
45 ],
46 }],
47 ],
48 'include_dirs': [
49 '..',
50 '<(SHARED_INTERMEDIATE_DIR)/autofill'
51 ],
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +000052 'sources': [
Ben Murdocheb525c52013-07-10 11:40:50 +010053 'autofill/core/browser/android/auxiliary_profile_loader_android.cc',
54 'autofill/core/browser/android/auxiliary_profile_loader_android.h',
55 'autofill/core/browser/android/auxiliary_profiles_android.cc',
56 'autofill/core/browser/android/auxiliary_profiles_android.h',
57 'autofill/core/browser/android/component_jni_registrar.cc',
58 'autofill/core/browser/android/component_jni_registrar.h',
59 'autofill/core/browser/android/personal_data_manager_android.cc',
Torne (Richard Coles)7d4cd472013-06-19 11:58:07 +010060 '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',
Torne (Richard Coles)58537e22013-09-12 12:10:22 +010065 'autofill/core/common/autofill_param_traits_macros.h',
Torne (Richard Coles)7d4cd472013-06-19 11:58:07 +010066 'autofill/core/common/autofill_pref_names.cc',
67 'autofill/core/common/autofill_pref_names.h',
68 'autofill/core/common/autofill_switches.cc',
69 'autofill/core/common/autofill_switches.h',
70 'autofill/core/common/form_data.cc',
71 'autofill/core/common/form_data.h',
72 'autofill/core/common/form_data_predictions.cc',
73 'autofill/core/common/form_data_predictions.h',
74 'autofill/core/common/form_field_data.cc',
75 'autofill/core/common/form_field_data.h',
76 'autofill/core/common/form_field_data_predictions.cc',
77 'autofill/core/common/form_field_data_predictions.h',
Torne (Richard Coles)58537e22013-09-12 12:10:22 +010078 'autofill/core/common/password_form.cc',
79 'autofill/core/common/password_form.h',
Torne (Richard Coles)7d4cd472013-06-19 11:58:07 +010080 'autofill/core/common/password_form_fill_data.cc',
81 'autofill/core/common/password_form_fill_data.h',
82 'autofill/core/common/password_generation_util.cc',
83 'autofill/core/common/password_generation_util.h',
84 'autofill/core/common/web_element_descriptor.cc',
85 'autofill/core/common/web_element_descriptor.h',
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +000086 ],
87 },
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +010088
89 {
Ben Murdocheb525c52013-07-10 11:40:50 +010090 'target_name': 'autofill_core_browser',
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +010091 'type': 'static_library',
92 'include_dirs': [
93 '..',
94 ],
95 'dependencies': [
Torne (Richard Coles)7d4cd472013-06-19 11:58:07 +010096 'autofill_core_common',
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +010097 'autofill_regexes',
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +010098 'encryptor',
Torne (Richard Coles)90dce4d2013-05-29 14:40:03 +010099 'user_prefs',
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +0100100 'webdata_common',
101 '../base/base.gyp:base',
102 '../base/base.gyp:base_i18n',
Torne (Richard Coles)90dce4d2013-05-29 14:40:03 +0100103 '../base/base.gyp:base_prefs',
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +0100104 '../content/content.gyp:content_browser',
105 '../content/content.gyp:content_common',
Torne (Richard Coles)90dce4d2013-05-29 14:40:03 +0100106 '../google_apis/google_apis.gyp:google_apis',
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +0100107 '../ipc/ipc.gyp:ipc',
108 '../skia/skia.gyp:skia',
109 '../sql/sql.gyp:sql',
110 '../third_party/icu/icu.gyp:icui18n',
111 '../third_party/icu/icu.gyp:icuuc',
112 '../third_party/libjingle/libjingle.gyp:libjingle',
113 '../third_party/libphonenumber/libphonenumber.gyp:libphonenumber',
Torne (Richard Coles)4e180b62013-10-18 15:46:22 +0100114 '../ui/gfx/gfx.gyp:gfx',
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +0100115 '../ui/ui.gyp:ui',
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +0100116 '../url/url.gyp:url_lib',
Ben Murdoch7dbb3d52013-07-17 14:55:54 +0100117 '../webkit/webkit_resources.gyp:webkit_resources',
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +0100118
Torne (Richard Coles)7d4cd472013-06-19 11:58:07 +0100119 'component_strings.gyp:component_strings',
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +0100120 ],
121 'sources': [
Ben Murdocheb525c52013-07-10 11:40:50 +0100122 'autofill/core/browser/address.cc',
123 'autofill/core/browser/address.h',
124 'autofill/core/browser/address_field.cc',
125 'autofill/core/browser/address_field.h',
126 'autofill/core/browser/autocomplete_history_manager.cc',
127 'autofill/core/browser/autocomplete_history_manager.h',
128 'autofill/core/browser/autofill-inl.h',
129 'autofill/core/browser/autofill_country.cc',
130 'autofill/core/browser/autofill_country.h',
131 'autofill/core/browser/autofill_data_model.cc',
132 'autofill/core/browser/autofill_data_model.h',
133 'autofill/core/browser/autofill_download.cc',
134 'autofill/core/browser/autofill_download.h',
135 'autofill/core/browser/autofill_download_url.cc',
136 'autofill/core/browser/autofill_download_url.h',
137 'autofill/core/browser/autofill_driver.h',
138 'autofill/core/browser/autofill_external_delegate.cc',
139 'autofill/core/browser/autofill_external_delegate.h',
140 'autofill/core/browser/autofill_field.cc',
141 'autofill/core/browser/autofill_field.h',
142 'autofill/core/browser/autofill_ie_toolbar_import_win.cc',
143 'autofill/core/browser/autofill_ie_toolbar_import_win.h',
144 'autofill/core/browser/autofill_manager.cc',
145 'autofill/core/browser/autofill_manager.h',
146 'autofill/core/browser/autofill_manager_delegate.h',
147 'autofill/core/browser/autofill_manager_test_delegate.h',
148 'autofill/core/browser/autofill_metrics.cc',
149 'autofill/core/browser/autofill_metrics.h',
150 'autofill/core/browser/autofill_popup_delegate.h',
151 'autofill/core/browser/autofill_profile.cc',
152 'autofill/core/browser/autofill_profile.h',
153 'autofill/core/browser/autofill_regex_constants.cc.utf8',
154 'autofill/core/browser/autofill_regex_constants.h',
155 'autofill/core/browser/autofill_regexes.cc',
156 'autofill/core/browser/autofill_regexes.h',
157 'autofill/core/browser/autofill_scanner.cc',
158 'autofill/core/browser/autofill_scanner.h',
159 'autofill/core/browser/autofill_server_field_info.h',
160 'autofill/core/browser/autofill_type.cc',
161 'autofill/core/browser/autofill_type.h',
162 'autofill/core/browser/autofill_xml_parser.cc',
163 'autofill/core/browser/autofill_xml_parser.h',
164 'autofill/core/browser/contact_info.cc',
165 'autofill/core/browser/contact_info.h',
166 'autofill/core/browser/credit_card.cc',
167 'autofill/core/browser/credit_card.h',
168 'autofill/core/browser/credit_card_field.cc',
169 'autofill/core/browser/credit_card_field.h',
170 'autofill/core/browser/email_field.cc',
171 'autofill/core/browser/email_field.h',
172 'autofill/core/browser/field_types.h',
173 'autofill/core/browser/form_field.cc',
174 'autofill/core/browser/form_field.h',
175 'autofill/core/browser/form_group.cc',
176 'autofill/core/browser/form_group.h',
177 'autofill/core/browser/form_structure.cc',
178 'autofill/core/browser/form_structure.h',
179 'autofill/core/browser/name_field.cc',
180 'autofill/core/browser/name_field.h',
181 'autofill/core/browser/password_autofill_manager.cc',
182 'autofill/core/browser/password_autofill_manager.h',
183 'autofill/core/browser/password_generator.cc',
184 'autofill/core/browser/password_generator.h',
185 'autofill/core/browser/personal_data_manager.cc',
186 'autofill/core/browser/personal_data_manager.h',
187 'autofill/core/browser/personal_data_manager_mac.mm',
188 'autofill/core/browser/personal_data_manager_observer.h',
189 'autofill/core/browser/phone_field.cc',
190 'autofill/core/browser/phone_field.h',
191 'autofill/core/browser/phone_number.cc',
192 'autofill/core/browser/phone_number.h',
193 'autofill/core/browser/phone_number_i18n.cc',
194 'autofill/core/browser/phone_number_i18n.h',
195 'autofill/core/browser/state_names.cc',
196 'autofill/core/browser/state_names.h',
197 'autofill/core/browser/validation.cc',
198 'autofill/core/browser/validation.h',
199 'autofill/core/browser/webdata/autofill_change.cc',
200 'autofill/core/browser/webdata/autofill_change.h',
201 'autofill/core/browser/webdata/autofill_entry.cc',
202 'autofill/core/browser/webdata/autofill_entry.h',
203 'autofill/core/browser/webdata/autofill_table.cc',
204 'autofill/core/browser/webdata/autofill_table.h',
205 'autofill/core/browser/webdata/autofill_webdata.h',
206 'autofill/core/browser/webdata/autofill_webdata_backend.h',
207 'autofill/core/browser/webdata/autofill_webdata_backend_impl.cc',
208 'autofill/core/browser/webdata/autofill_webdata_backend_impl.h',
209 'autofill/core/browser/webdata/autofill_webdata_service.cc',
210 'autofill/core/browser/webdata/autofill_webdata_service.h',
211 'autofill/core/browser/webdata/autofill_webdata_service_observer.h',
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +0100212
213 # This file is generated by the autofill_regexes action.
214 '<(SHARED_INTERMEDIATE_DIR)/autofill_regex_constants.cc',
215 ],
216
217 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
218 'msvs_disabled_warnings': [4267, ],
219 },
220
221 {
Ben Murdochca12bfa2013-07-23 11:17:05 +0100222 'target_name': 'autofill_core_test_support',
223 'type': 'static_library',
224 'dependencies': [
225 'autofill_core_common',
226 'autofill_core_browser',
Torne (Richard Coles)424c4d72013-08-30 15:14:49 +0100227 '../skia/skia.gyp:skia',
Ben Murdochca12bfa2013-07-23 11:17:05 +0100228 '../testing/gtest.gyp:gtest',
229 ],
230 'sources': [
231 'autofill/core/browser/android/test_auxiliary_profile_loader_android.cc',
232 'autofill/core/browser/android/test_auxiliary_profile_loader_android.h',
Torne (Richard Coles)f2477e02013-11-28 11:55:43 +0000233 'autofill/core/browser/autofill_test_utils.cc',
234 'autofill/core/browser/autofill_test_utils.h',
Ben Murdochca12bfa2013-07-23 11:17:05 +0100235 'autofill/core/browser/data_driven_test.cc',
236 'autofill/core/browser/data_driven_test.h',
237 'autofill/core/browser/test_autofill_driver.cc',
238 'autofill/core/browser/test_autofill_driver.h',
239 'autofill/core/browser/test_autofill_external_delegate.cc',
240 'autofill/core/browser/test_autofill_external_delegate.h',
241 'autofill/core/browser/test_autofill_manager_delegate.cc',
242 'autofill/core/browser/test_autofill_manager_delegate.h',
243 'autofill/core/browser/test_personal_data_manager.cc',
244 'autofill/core/browser/test_personal_data_manager.h',
245 ],
246 },
247
248 {
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +0100249 # Protobuf compiler / generate rule for Autofill's risk integration.
250 'target_name': 'autofill_content_risk_proto',
251 'type': 'static_library',
252 'sources': [
253 'autofill/content/browser/risk/proto/fingerprint.proto',
254 ],
255 'variables': {
256 'proto_in_dir': 'autofill/content/browser/risk/proto',
257 'proto_out_dir': 'components/autofill/content/browser/risk/proto',
258 },
259 'includes': [ '../build/protoc.gypi' ]
260 },
261 {
Ben Murdochca12bfa2013-07-23 11:17:05 +0100262 'target_name': 'autofill_content_test_support',
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +0100263 'type': 'static_library',
Ben Murdoch7dbb3d52013-07-17 14:55:54 +0100264 'dependencies': [
265 '../testing/gmock.gyp:gmock',
266 ],
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +0100267 'sources': [
Ben Murdoch7dbb3d52013-07-17 14:55:54 +0100268 'autofill/content/browser/wallet/mock_wallet_client.cc',
269 'autofill/content/browser/wallet/mock_wallet_client.h',
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +0100270 'autofill/content/browser/wallet/wallet_test_util.cc',
271 'autofill/content/browser/wallet/wallet_test_util.h',
272 ],
273 'include_dirs': [ '..' ],
274 },
275 {
276 'target_name': 'autofill_content_browser',
277 'type': 'static_library',
278 'include_dirs': [
279 '..',
280 ],
281 'dependencies': [
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +0100282 'autofill_content_risk_proto',
Ben Murdocheb525c52013-07-10 11:40:50 +0100283 'autofill_core_browser',
Torne (Richard Coles)7d4cd472013-06-19 11:58:07 +0100284 'autofill_core_common',
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +0100285 'autofill_regexes',
286 'encryptor',
287 'user_prefs',
288 'webdata_common',
289 '../base/base.gyp:base',
290 '../base/base.gyp:base_i18n',
291 '../base/base.gyp:base_prefs',
292 '../content/content.gyp:content_browser',
293 '../content/content.gyp:content_common',
294 '../google_apis/google_apis.gyp:google_apis',
295 '../ipc/ipc.gyp:ipc',
296 '../skia/skia.gyp:skia',
297 '../sql/sql.gyp:sql',
298 '../third_party/icu/icu.gyp:icui18n',
299 '../third_party/icu/icu.gyp:icuuc',
300 '../third_party/libjingle/libjingle.gyp:libjingle',
301 '../third_party/libphonenumber/libphonenumber.gyp:libphonenumber',
Torne (Richard Coles)4e180b62013-10-18 15:46:22 +0100302 '../ui/gfx/gfx.gyp:gfx',
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +0100303 '../ui/ui.gyp:ui',
304 '../url/url.gyp:url_lib',
Ben Murdoch7dbb3d52013-07-17 14:55:54 +0100305 '../webkit/webkit_resources.gyp:webkit_resources',
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +0100306
Torne (Richard Coles)7d4cd472013-06-19 11:58:07 +0100307 'component_strings.gyp:component_strings',
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +0100308 ],
309 'sources': [
Torne (Richard Coles)7d4cd472013-06-19 11:58:07 +0100310 'autofill/content/browser/autofill_driver_impl.cc',
311 'autofill/content/browser/autofill_driver_impl.h',
Torne (Richard Coles)a3f6a492013-12-18 16:25:09 +0000312 'autofill/content/browser/request_autocomplete_manager.cc',
313 'autofill/content/browser/request_autocomplete_manager.h',
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +0100314 'autofill/content/browser/risk/fingerprint.cc',
315 'autofill/content/browser/risk/fingerprint.h',
Torne (Richard Coles)7d4cd472013-06-19 11:58:07 +0100316 'autofill/content/browser/wallet/form_field_error.cc',
317 'autofill/content/browser/wallet/form_field_error.h',
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +0100318 'autofill/content/browser/wallet/full_wallet.cc',
319 'autofill/content/browser/wallet/full_wallet.h',
Torne (Richard Coles)a3f6a492013-12-18 16:25:09 +0000320 'autofill/content/browser/wallet/gaia_account.cc',
321 'autofill/content/browser/wallet/gaia_account.h',
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +0100322 'autofill/content/browser/wallet/instrument.cc',
323 'autofill/content/browser/wallet/instrument.h',
324 'autofill/content/browser/wallet/required_action.cc',
325 'autofill/content/browser/wallet/required_action.h',
326 'autofill/content/browser/wallet/wallet_address.cc',
327 'autofill/content/browser/wallet/wallet_address.h',
328 'autofill/content/browser/wallet/wallet_client.cc',
329 'autofill/content/browser/wallet/wallet_client.h',
330 'autofill/content/browser/wallet/wallet_client_delegate.h',
331 'autofill/content/browser/wallet/wallet_items.cc',
332 'autofill/content/browser/wallet/wallet_items.h',
333 'autofill/content/browser/wallet/wallet_service_url.cc',
334 'autofill/content/browser/wallet/wallet_service_url.h',
335 'autofill/content/browser/wallet/wallet_signin_helper.cc',
336 'autofill/content/browser/wallet/wallet_signin_helper.h',
337 ],
338
339 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
340 'msvs_disabled_warnings': [4267, ],
341 },
342
343 {
344 'target_name': 'autofill_content_renderer',
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +0100345 'type': 'static_library',
346 'include_dirs': [
347 '..',
348 ],
349 'dependencies': [
Torne (Richard Coles)7d4cd472013-06-19 11:58:07 +0100350 'autofill_core_common',
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +0100351 '../base/base.gyp:base',
352 '../content/content.gyp:content_renderer',
353 '../content/content.gyp:content_common',
354 '../ipc/ipc.gyp:ipc',
355 '../skia/skia.gyp:skia',
356
Torne (Richard Coles)7d4cd472013-06-19 11:58:07 +0100357 'component_strings.gyp:component_strings',
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +0100358 ],
359 'sources': [
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +0100360 'autofill/content/renderer/autofill_agent.cc',
361 'autofill/content/renderer/autofill_agent.h',
362 'autofill/content/renderer/form_autofill_util.cc',
363 'autofill/content/renderer/form_autofill_util.h',
364 'autofill/content/renderer/form_cache.cc',
365 'autofill/content/renderer/form_cache.h',
366 'autofill/content/renderer/page_click_listener.h',
367 'autofill/content/renderer/page_click_tracker.cc',
368 'autofill/content/renderer/page_click_tracker.h',
369 'autofill/content/renderer/password_autofill_agent.cc',
370 'autofill/content/renderer/password_autofill_agent.h',
Torne (Richard Coles)58537e22013-09-12 12:10:22 +0100371 'autofill/content/renderer/password_form_conversion_utils.cc',
372 'autofill/content/renderer/password_form_conversion_utils.h',
Torne (Richard Coles)4e180b62013-10-18 15:46:22 +0100373 'autofill/content/renderer/password_generation_agent.cc',
374 'autofill/content/renderer/password_generation_agent.h',
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +0100375 ],
376 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
377 'msvs_disabled_warnings': [4267, ],
378 },
379 ],
380 }],
381 ['OS == "android"', {
382 'targets': [
383 {
384 'target_name': 'autofill_java',
385 'type': 'none',
386 'dependencies': [
387 '../base/base.gyp:base',
388 '../content/content.gyp:content_java',
389 ],
390 'variables': {
Ben Murdocheb525c52013-07-10 11:40:50 +0100391 'java_in_dir': 'autofill/core/browser/android/java',
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +0100392 },
393 'includes': [ '../build/java.gypi' ],
394 },
395 {
396 'target_name': 'autofill_jni_headers',
397 'type': 'none',
398 'sources': [
Ben Murdocheb525c52013-07-10 11:40:50 +0100399 'autofill/core/browser/android/java/src/org/chromium/components/browser/autofill/PersonalAutofillPopulator.java',
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +0100400 ],
401 'variables': {
402 'jni_gen_package': 'autofill',
403 },
404 'includes': [ '../build/jni_generator.gypi' ],
405 },
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000406 ],
407 }],
408 ],
409}