Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(132)

Side by Side Diff: components/autofill.gypi

Issue 108013004: Build Autofill component on iOS. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@move_autofill_ipc
Patch Set: Response to review Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « build/ios/grit_whitelist.txt ('k') | components/autofill/core/browser/credit_card.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 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 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 # Private target only used in components/autofill. 8 # Private target only used in components/autofill.
9 'target_name': 'autofill_regexes', 9 'target_name': 'autofill_regexes',
10 'type': 'none', 10 'type': 'none',
11 'actions': [{ 11 'actions': [{
12 'action_name': 'autofill_regexes', 12 'action_name': 'autofill_regexes',
13 'inputs': [ 13 'inputs': [
14 '<(DEPTH)/build/escape_unicode.py', 14 '<(DEPTH)/build/escape_unicode.py',
15 'autofill/core/browser/autofill_regex_constants.cc.utf8', 15 'autofill/core/browser/autofill_regex_constants.cc.utf8',
16 ], 16 ],
17 'outputs': [ 17 'outputs': [
18 '<(SHARED_INTERMEDIATE_DIR)/autofill_regex_constants.cc', 18 '<(SHARED_INTERMEDIATE_DIR)/autofill_regex_constants.cc',
19 ], 19 ],
20 'action': ['python', '<(DEPTH)/build/escape_unicode.py', 20 'action': ['python', '<(DEPTH)/build/escape_unicode.py',
21 '-o', '<(SHARED_INTERMEDIATE_DIR)', 21 '-o', '<(SHARED_INTERMEDIATE_DIR)',
22 'autofill/core/browser/autofill_regex_constants.cc.utf8'], 22 'autofill/core/browser/autofill_regex_constants.cc.utf8'],
23 }], 23 }],
24 }, 24 },
25
26 {
27 'target_name': 'autofill_core_common',
28 'type': 'static_library',
29 'dependencies': [
30 '../base/base.gyp:base',
31 '../ui/gfx/gfx.gyp:gfx',
32 '../ui/ui.gyp:ui',
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 '<(SHARED_INTERMEDIATE_DIR)/autofill'
45 ],
46 'sources': [
47 'autofill/core/browser/android/auxiliary_profile_loader_android.cc',
tfarina 2014/07/30 03:36:37 Ilya, Colin, why are these browser files in this c
Ilya Sherman 2014/07/30 20:28:01 Huh, that's a great question. I bet it was an ove
blundell 2014/08/06 08:58:57 Yeah, seems like a bug. On 2014/07/30 20:28:01, I
48 'autofill/core/browser/android/auxiliary_profile_loader_android.h',
49 'autofill/core/browser/android/auxiliary_profiles_android.cc',
50 'autofill/core/browser/android/auxiliary_profiles_android.h',
51 'autofill/core/browser/android/component_jni_registrar.cc',
52 'autofill/core/browser/android/component_jni_registrar.h',
53 'autofill/core/browser/android/personal_data_manager_android.cc',
54 'autofill/core/common/autofill_constants.cc',
55 'autofill/core/common/autofill_constants.h',
56 'autofill/core/common/autofill_pref_names.cc',
57 'autofill/core/common/autofill_pref_names.h',
58 'autofill/core/common/autofill_switches.cc',
59 'autofill/core/common/autofill_switches.h',
60 'autofill/core/common/form_data.cc',
61 'autofill/core/common/form_data.h',
62 'autofill/core/common/form_data_predictions.cc',
63 'autofill/core/common/form_data_predictions.h',
64 'autofill/core/common/form_field_data.cc',
65 'autofill/core/common/form_field_data.h',
66 'autofill/core/common/form_field_data_predictions.cc',
67 'autofill/core/common/form_field_data_predictions.h',
68 'autofill/core/common/password_form.cc',
69 'autofill/core/common/password_form.h',
70 'autofill/core/common/password_form_fill_data.cc',
71 'autofill/core/common/password_form_fill_data.h',
72 'autofill/core/common/password_generation_util.cc',
73 'autofill/core/common/password_generation_util.h',
74 'autofill/core/common/web_element_descriptor.cc',
75 'autofill/core/common/web_element_descriptor.h',
76 ],
77 },
78
79 {
80 'target_name': 'autofill_core_browser',
81 'type': 'static_library',
82 'include_dirs': [
83 '..',
84 ],
85 'dependencies': [
86 'autofill_core_common',
87 'autofill_regexes',
88 'component_strings.gyp:component_strings',
89 'encryptor',
90 'user_prefs',
91 'webdata_common',
92 '../base/base.gyp:base',
93 '../base/base.gyp:base_i18n',
94 '../base/base.gyp:base_prefs',
95 '../google_apis/google_apis.gyp:google_apis',
96 '../skia/skia.gyp:skia',
97 '../sql/sql.gyp:sql',
98 '../third_party/icu/icu.gyp:icui18n',
99 '../third_party/icu/icu.gyp:icuuc',
100 '../third_party/libjingle/libjingle.gyp:libjingle',
101 '../third_party/libphonenumber/libphonenumber.gyp:libphonenumber',
102 '../ui/gfx/gfx.gyp:gfx',
103 '../ui/ui.gyp:ui',
104 '../url/url.gyp:url_lib',
105 ],
106 # TODO(blundell): Eliminate the need for this conditional dependence.
107 # crbug.com/328150
108 'conditions': [
109 ['OS != "ios"', {
110 'dependencies': [
111 '../webkit/webkit_resources.gyp:webkit_resources',
112 ],
113 }],
114 ],
115 'sources': [
116 'autofill/core/browser/address.cc',
117 'autofill/core/browser/address.h',
118 'autofill/core/browser/address_field.cc',
119 'autofill/core/browser/address_field.h',
120 'autofill/core/browser/autocomplete_history_manager.cc',
121 'autofill/core/browser/autocomplete_history_manager.h',
122 'autofill/core/browser/autofill-inl.h',
123 'autofill/core/browser/autofill_country.cc',
124 'autofill/core/browser/autofill_country.h',
125 'autofill/core/browser/autofill_data_model.cc',
126 'autofill/core/browser/autofill_data_model.h',
127 'autofill/core/browser/autofill_download.cc',
128 'autofill/core/browser/autofill_download.h',
129 'autofill/core/browser/autofill_download_url.cc',
130 'autofill/core/browser/autofill_download_url.h',
131 'autofill/core/browser/autofill_driver.h',
132 'autofill/core/browser/autofill_external_delegate.cc',
133 'autofill/core/browser/autofill_external_delegate.h',
134 'autofill/core/browser/autofill_field.cc',
135 'autofill/core/browser/autofill_field.h',
136 'autofill/core/browser/autofill_ie_toolbar_import_win.cc',
137 'autofill/core/browser/autofill_ie_toolbar_import_win.h',
138 'autofill/core/browser/autofill_manager.cc',
139 'autofill/core/browser/autofill_manager.h',
140 'autofill/core/browser/autofill_manager_delegate.h',
141 'autofill/core/browser/autofill_manager_test_delegate.h',
142 'autofill/core/browser/autofill_metrics.cc',
143 'autofill/core/browser/autofill_metrics.h',
144 'autofill/core/browser/autofill_popup_delegate.h',
145 'autofill/core/browser/autofill_profile.cc',
146 'autofill/core/browser/autofill_profile.h',
147 'autofill/core/browser/autofill_regex_constants.cc.utf8',
148 'autofill/core/browser/autofill_regex_constants.h',
149 'autofill/core/browser/autofill_regexes.cc',
150 'autofill/core/browser/autofill_regexes.h',
151 'autofill/core/browser/autofill_scanner.cc',
152 'autofill/core/browser/autofill_scanner.h',
153 'autofill/core/browser/autofill_server_field_info.h',
154 'autofill/core/browser/autofill_type.cc',
155 'autofill/core/browser/autofill_type.h',
156 'autofill/core/browser/autofill_xml_parser.cc',
157 'autofill/core/browser/autofill_xml_parser.h',
158 'autofill/core/browser/contact_info.cc',
159 'autofill/core/browser/contact_info.h',
160 'autofill/core/browser/credit_card.cc',
161 'autofill/core/browser/credit_card.h',
162 'autofill/core/browser/credit_card_field.cc',
163 'autofill/core/browser/credit_card_field.h',
164 'autofill/core/browser/email_field.cc',
165 'autofill/core/browser/email_field.h',
166 'autofill/core/browser/field_types.h',
167 'autofill/core/browser/form_field.cc',
168 'autofill/core/browser/form_field.h',
169 'autofill/core/browser/form_group.cc',
170 'autofill/core/browser/form_group.h',
171 'autofill/core/browser/form_structure.cc',
172 'autofill/core/browser/form_structure.h',
173 'autofill/core/browser/name_field.cc',
174 'autofill/core/browser/name_field.h',
175 'autofill/core/browser/password_autofill_manager.cc',
176 'autofill/core/browser/password_autofill_manager.h',
177 'autofill/core/browser/password_generator.cc',
178 'autofill/core/browser/password_generator.h',
179 'autofill/core/browser/personal_data_manager.cc',
180 'autofill/core/browser/personal_data_manager.h',
181 'autofill/core/browser/personal_data_manager_mac.mm',
182 'autofill/core/browser/personal_data_manager_observer.h',
183 'autofill/core/browser/phone_field.cc',
184 'autofill/core/browser/phone_field.h',
185 'autofill/core/browser/phone_number.cc',
186 'autofill/core/browser/phone_number.h',
187 'autofill/core/browser/phone_number_i18n.cc',
188 'autofill/core/browser/phone_number_i18n.h',
189 'autofill/core/browser/state_names.cc',
190 'autofill/core/browser/state_names.h',
191 'autofill/core/browser/validation.cc',
192 'autofill/core/browser/validation.h',
193 'autofill/core/browser/webdata/autofill_change.cc',
194 'autofill/core/browser/webdata/autofill_change.h',
195 'autofill/core/browser/webdata/autofill_entry.cc',
196 'autofill/core/browser/webdata/autofill_entry.h',
197 'autofill/core/browser/webdata/autofill_table.cc',
198 'autofill/core/browser/webdata/autofill_table.h',
199 'autofill/core/browser/webdata/autofill_webdata.h',
200 'autofill/core/browser/webdata/autofill_webdata_backend.h',
201 'autofill/core/browser/webdata/autofill_webdata_backend_impl.cc',
202 'autofill/core/browser/webdata/autofill_webdata_backend_impl.h',
203 'autofill/core/browser/webdata/autofill_webdata_service.cc',
204 'autofill/core/browser/webdata/autofill_webdata_service.h',
205 'autofill/core/browser/webdata/autofill_webdata_service_observer.h',
206
207 # This file is generated by the autofill_regexes action.
208 '<(SHARED_INTERMEDIATE_DIR)/autofill_regex_constants.cc',
209 ],
210
211 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
212 'msvs_disabled_warnings': [4267, ],
213 },
214
215 {
216 'target_name': 'autofill_core_test_support',
217 'type': 'static_library',
218 'dependencies': [
219 'autofill_core_common',
220 'autofill_core_browser',
221 '../skia/skia.gyp:skia',
222 '../testing/gtest.gyp:gtest',
223 ],
224 'sources': [
225 'autofill/core/browser/android/test_auxiliary_profile_loader_android.cc' ,
226 'autofill/core/browser/android/test_auxiliary_profile_loader_android.h',
227 'autofill/core/browser/autofill_test_utils.cc',
228 'autofill/core/browser/autofill_test_utils.h',
229 'autofill/core/browser/data_driven_test.cc',
230 'autofill/core/browser/data_driven_test.h',
231 'autofill/core/browser/test_autofill_driver.cc',
232 'autofill/core/browser/test_autofill_driver.h',
233 'autofill/core/browser/test_autofill_external_delegate.cc',
234 'autofill/core/browser/test_autofill_external_delegate.h',
235 'autofill/core/browser/test_autofill_manager_delegate.cc',
236 'autofill/core/browser/test_autofill_manager_delegate.h',
237 'autofill/core/browser/test_personal_data_manager.cc',
238 'autofill/core/browser/test_personal_data_manager.h',
239 ],
240 },
25 ], 241 ],
26 'conditions': [ 242 'conditions': [
27 ['OS != "ios"', { 243 ['OS != "ios"', {
28 'targets': [ 244 'targets': [
29 { 245 {
30 'target_name': 'autofill_core_common',
31 'type': 'static_library',
32 'dependencies': [
33 '../base/base.gyp:base',
34 '../ui/gfx/gfx.gyp:gfx',
35 '../ui/ui.gyp:ui',
36 '../url/url.gyp:url_lib',
37 ],
38 'conditions': [
39 ['OS == "android"', {
40 'dependencies': [
41 'autofill_jni_headers',
42 ],
43 }],
44 ],
45 'include_dirs': [
46 '..',
47 '<(SHARED_INTERMEDIATE_DIR)/autofill',
48 ],
49 'sources': [
50 'autofill/core/browser/android/auxiliary_profile_loader_android.cc',
51 'autofill/core/browser/android/auxiliary_profile_loader_android.h',
52 'autofill/core/browser/android/auxiliary_profiles_android.cc',
53 'autofill/core/browser/android/auxiliary_profiles_android.h',
54 'autofill/core/browser/android/component_jni_registrar.cc',
55 'autofill/core/browser/android/component_jni_registrar.h',
56 'autofill/core/browser/android/personal_data_manager_android.cc',
57 'autofill/core/common/autofill_constants.cc',
58 'autofill/core/common/autofill_constants.h',
59 'autofill/core/common/autofill_pref_names.cc',
60 'autofill/core/common/autofill_pref_names.h',
61 'autofill/core/common/autofill_switches.cc',
62 'autofill/core/common/autofill_switches.h',
63 'autofill/core/common/form_data.cc',
64 'autofill/core/common/form_data.h',
65 'autofill/core/common/form_data_predictions.cc',
66 'autofill/core/common/form_data_predictions.h',
67 'autofill/core/common/form_field_data.cc',
68 'autofill/core/common/form_field_data.h',
69 'autofill/core/common/form_field_data_predictions.cc',
70 'autofill/core/common/form_field_data_predictions.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 },
81
82 {
83 'target_name': 'autofill_content_common', 246 'target_name': 'autofill_content_common',
84 'type': 'static_library', 247 'type': 'static_library',
85 'dependencies': [ 248 'dependencies': [
86 'autofill_core_common', 249 'autofill_core_common',
87 '../base/base.gyp:base', 250 '../base/base.gyp:base',
88 '../content/content.gyp:content_common', 251 '../content/content.gyp:content_common',
89 '../ipc/ipc.gyp:ipc', 252 '../ipc/ipc.gyp:ipc',
90 '../third_party/WebKit/public/blink.gyp:blink_minimal', 253 '../third_party/WebKit/public/blink.gyp:blink_minimal',
91 '../ui/gfx/gfx.gyp:gfx', 254 '../ui/gfx/gfx.gyp:gfx',
92 ], 255 ],
93 'include_dirs': [ 256 'include_dirs': [
94 '..', 257 '..',
95 ], 258 ],
96 'sources': [ 259 'sources': [
97 'autofill/content/common/autofill_messages.h', 260 'autofill/content/common/autofill_messages.h',
98 'autofill/content/common/autofill_message_generator.cc', 261 'autofill/content/common/autofill_message_generator.cc',
99 'autofill/content/common/autofill_message_generator.h', 262 'autofill/content/common/autofill_message_generator.h',
100 'autofill/content/common/autofill_param_traits_macros.h', 263 'autofill/content/common/autofill_param_traits_macros.h',
101 ], 264 ],
102 }, 265 },
103 266
104 { 267 {
105 'target_name': 'autofill_core_browser',
106 'type': 'static_library',
107 'include_dirs': [
108 '..',
109 ],
110 'dependencies': [
111 'autofill_core_common',
112 'autofill_regexes',
113 'encryptor',
114 'user_prefs',
115 'webdata_common',
116 '../base/base.gyp:base',
117 '../base/base.gyp:base_i18n',
118 '../base/base.gyp:base_prefs',
119 '../content/content.gyp:content_browser',
120 '../content/content.gyp:content_common',
121 '../google_apis/google_apis.gyp:google_apis',
122 '../skia/skia.gyp:skia',
123 '../sql/sql.gyp:sql',
124 '../third_party/icu/icu.gyp:icui18n',
125 '../third_party/icu/icu.gyp:icuuc',
126 '../third_party/libjingle/libjingle.gyp:libjingle',
127 '../third_party/libphonenumber/libphonenumber.gyp:libphonenumber',
128 '../ui/gfx/gfx.gyp:gfx',
129 '../ui/ui.gyp:ui',
130 '../url/url.gyp:url_lib',
131 '../webkit/webkit_resources.gyp:webkit_resources',
132
133 'component_strings.gyp:component_strings',
134 ],
135 'sources': [
136 'autofill/core/browser/address.cc',
137 'autofill/core/browser/address.h',
138 'autofill/core/browser/address_field.cc',
139 'autofill/core/browser/address_field.h',
140 'autofill/core/browser/autocomplete_history_manager.cc',
141 'autofill/core/browser/autocomplete_history_manager.h',
142 'autofill/core/browser/autofill-inl.h',
143 'autofill/core/browser/autofill_country.cc',
144 'autofill/core/browser/autofill_country.h',
145 'autofill/core/browser/autofill_data_model.cc',
146 'autofill/core/browser/autofill_data_model.h',
147 'autofill/core/browser/autofill_download.cc',
148 'autofill/core/browser/autofill_download.h',
149 'autofill/core/browser/autofill_download_url.cc',
150 'autofill/core/browser/autofill_download_url.h',
151 'autofill/core/browser/autofill_driver.h',
152 'autofill/core/browser/autofill_external_delegate.cc',
153 'autofill/core/browser/autofill_external_delegate.h',
154 'autofill/core/browser/autofill_field.cc',
155 'autofill/core/browser/autofill_field.h',
156 'autofill/core/browser/autofill_ie_toolbar_import_win.cc',
157 'autofill/core/browser/autofill_ie_toolbar_import_win.h',
158 'autofill/core/browser/autofill_manager.cc',
159 'autofill/core/browser/autofill_manager.h',
160 'autofill/core/browser/autofill_manager_delegate.h',
161 'autofill/core/browser/autofill_manager_test_delegate.h',
162 'autofill/core/browser/autofill_metrics.cc',
163 'autofill/core/browser/autofill_metrics.h',
164 'autofill/core/browser/autofill_popup_delegate.h',
165 'autofill/core/browser/autofill_profile.cc',
166 'autofill/core/browser/autofill_profile.h',
167 'autofill/core/browser/autofill_regex_constants.cc.utf8',
168 'autofill/core/browser/autofill_regex_constants.h',
169 'autofill/core/browser/autofill_regexes.cc',
170 'autofill/core/browser/autofill_regexes.h',
171 'autofill/core/browser/autofill_scanner.cc',
172 'autofill/core/browser/autofill_scanner.h',
173 'autofill/core/browser/autofill_server_field_info.h',
174 'autofill/core/browser/autofill_type.cc',
175 'autofill/core/browser/autofill_type.h',
176 'autofill/core/browser/autofill_xml_parser.cc',
177 'autofill/core/browser/autofill_xml_parser.h',
178 'autofill/core/browser/contact_info.cc',
179 'autofill/core/browser/contact_info.h',
180 'autofill/core/browser/credit_card.cc',
181 'autofill/core/browser/credit_card.h',
182 'autofill/core/browser/credit_card_field.cc',
183 'autofill/core/browser/credit_card_field.h',
184 'autofill/core/browser/email_field.cc',
185 'autofill/core/browser/email_field.h',
186 'autofill/core/browser/field_types.h',
187 'autofill/core/browser/form_field.cc',
188 'autofill/core/browser/form_field.h',
189 'autofill/core/browser/form_group.cc',
190 'autofill/core/browser/form_group.h',
191 'autofill/core/browser/form_structure.cc',
192 'autofill/core/browser/form_structure.h',
193 'autofill/core/browser/name_field.cc',
194 'autofill/core/browser/name_field.h',
195 'autofill/core/browser/password_autofill_manager.cc',
196 'autofill/core/browser/password_autofill_manager.h',
197 'autofill/core/browser/password_generator.cc',
198 'autofill/core/browser/password_generator.h',
199 'autofill/core/browser/personal_data_manager.cc',
200 'autofill/core/browser/personal_data_manager.h',
201 'autofill/core/browser/personal_data_manager_mac.mm',
202 'autofill/core/browser/personal_data_manager_observer.h',
203 'autofill/core/browser/phone_field.cc',
204 'autofill/core/browser/phone_field.h',
205 'autofill/core/browser/phone_number.cc',
206 'autofill/core/browser/phone_number.h',
207 'autofill/core/browser/phone_number_i18n.cc',
208 'autofill/core/browser/phone_number_i18n.h',
209 'autofill/core/browser/state_names.cc',
210 'autofill/core/browser/state_names.h',
211 'autofill/core/browser/validation.cc',
212 'autofill/core/browser/validation.h',
213 'autofill/core/browser/webdata/autofill_change.cc',
214 'autofill/core/browser/webdata/autofill_change.h',
215 'autofill/core/browser/webdata/autofill_entry.cc',
216 'autofill/core/browser/webdata/autofill_entry.h',
217 'autofill/core/browser/webdata/autofill_table.cc',
218 'autofill/core/browser/webdata/autofill_table.h',
219 'autofill/core/browser/webdata/autofill_webdata.h',
220 'autofill/core/browser/webdata/autofill_webdata_backend.h',
221 'autofill/core/browser/webdata/autofill_webdata_backend_impl.cc',
222 'autofill/core/browser/webdata/autofill_webdata_backend_impl.h',
223 'autofill/core/browser/webdata/autofill_webdata_service.cc',
224 'autofill/core/browser/webdata/autofill_webdata_service.h',
225 'autofill/core/browser/webdata/autofill_webdata_service_observer.h',
226
227 # This file is generated by the autofill_regexes action.
228 '<(SHARED_INTERMEDIATE_DIR)/autofill_regex_constants.cc',
229 ],
230
231 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
232 'msvs_disabled_warnings': [4267, ],
233 },
234
235 {
236 'target_name': 'autofill_core_test_support',
237 'type': 'static_library',
238 'dependencies': [
239 'autofill_core_common',
240 'autofill_core_browser',
241 '../skia/skia.gyp:skia',
242 '../testing/gtest.gyp:gtest',
243 ],
244 'sources': [
245 'autofill/core/browser/android/test_auxiliary_profile_loader_android .cc',
246 'autofill/core/browser/android/test_auxiliary_profile_loader_android .h',
247 'autofill/core/browser/autofill_test_utils.cc',
248 'autofill/core/browser/autofill_test_utils.h',
249 'autofill/core/browser/data_driven_test.cc',
250 'autofill/core/browser/data_driven_test.h',
251 'autofill/core/browser/test_autofill_driver.cc',
252 'autofill/core/browser/test_autofill_driver.h',
253 'autofill/core/browser/test_autofill_external_delegate.cc',
254 'autofill/core/browser/test_autofill_external_delegate.h',
255 'autofill/core/browser/test_autofill_manager_delegate.cc',
256 'autofill/core/browser/test_autofill_manager_delegate.h',
257 'autofill/core/browser/test_personal_data_manager.cc',
258 'autofill/core/browser/test_personal_data_manager.h',
259 ],
260 },
261
262 {
263 # Protobuf compiler / generate rule for Autofill's risk integration. 268 # Protobuf compiler / generate rule for Autofill's risk integration.
264 'target_name': 'autofill_content_risk_proto', 269 'target_name': 'autofill_content_risk_proto',
265 'type': 'static_library', 270 'type': 'static_library',
266 'sources': [ 271 'sources': [
267 'autofill/content/browser/risk/proto/fingerprint.proto', 272 'autofill/content/browser/risk/proto/fingerprint.proto',
268 ], 273 ],
269 'variables': { 274 'variables': {
270 'proto_in_dir': 'autofill/content/browser/risk/proto', 275 'proto_in_dir': 'autofill/content/browser/risk/proto',
271 'proto_out_dir': 'components/autofill/content/browser/risk/proto', 276 'proto_out_dir': 'components/autofill/content/browser/risk/proto',
272 }, 277 },
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
416 ], 421 ],
417 'variables': { 422 'variables': {
418 'jni_gen_package': 'autofill', 423 'jni_gen_package': 'autofill',
419 }, 424 },
420 'includes': [ '../build/jni_generator.gypi' ], 425 'includes': [ '../build/jni_generator.gypi' ],
421 }, 426 },
422 ], 427 ],
423 }], 428 }],
424 ], 429 ],
425 } 430 }
OLDNEW
« no previous file with comments | « build/ios/grit_whitelist.txt ('k') | components/autofill/core/browser/credit_card.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698