Torne (Richard Coles) | 2a99a7e | 2013-03-28 15:31:22 +0000 | [diff] [blame] | 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. |
| 4 | |
| 5 | { |
| 6 | 'targets': [ |
| 7 | { |
Torne (Richard Coles) | c2e0dbd | 2013-05-09 18:35:53 +0100 | [diff] [blame] | 8 | # Private target only used in components/autofill. |
Torne (Richard Coles) | 2a99a7e | 2013-03-28 15:31:22 +0000 | [diff] [blame] | 9 | 'target_name': 'autofill_regexes', |
| 10 | 'type': 'none', |
| 11 | 'actions': [{ |
| 12 | 'action_name': 'autofill_regexes', |
| 13 | 'inputs': [ |
| 14 | '<(DEPTH)/build/escape_unicode.py', |
Ben Murdoch | eb525c5 | 2013-07-10 11:40:50 +0100 | [diff] [blame] | 15 | 'autofill/core/browser/autofill_regex_constants.cc.utf8', |
Torne (Richard Coles) | 2a99a7e | 2013-03-28 15:31:22 +0000 | [diff] [blame] | 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)', |
Ben Murdoch | eb525c5 | 2013-07-10 11:40:50 +0100 | [diff] [blame] | 22 | 'autofill/core/browser/autofill_regex_constants.cc.utf8'], |
Torne (Richard Coles) | 2a99a7e | 2013-03-28 15:31:22 +0000 | [diff] [blame] | 23 | }], |
| 24 | }, |
Torne (Richard Coles) | 2a99a7e | 2013-03-28 15:31:22 +0000 | [diff] [blame] | 25 | ], |
| 26 | 'conditions': [ |
| 27 | ['OS != "ios"', { |
| 28 | 'targets': [ |
| 29 | { |
Torne (Richard Coles) | 7d4cd47 | 2013-06-19 11:58:07 +0100 | [diff] [blame] | 30 | 'target_name': 'autofill_core_common', |
Torne (Richard Coles) | 2a99a7e | 2013-03-28 15:31:22 +0000 | [diff] [blame] | 31 | 'type': 'static_library', |
Torne (Richard Coles) | 2a99a7e | 2013-03-28 15:31:22 +0000 | [diff] [blame] | 32 | 'dependencies': [ |
| 33 | '../base/base.gyp:base', |
Torne (Richard Coles) | 2a99a7e | 2013-03-28 15:31:22 +0000 | [diff] [blame] | 34 | '../content/content.gyp:content_common', |
| 35 | '../ipc/ipc.gyp:ipc', |
Ben Murdoch | ca12bfa | 2013-07-23 11:17:05 +0100 | [diff] [blame] | 36 | '../third_party/WebKit/public/blink.gyp:blink_minimal', |
Torne (Richard Coles) | 4e180b6 | 2013-10-18 15:46:22 +0100 | [diff] [blame] | 37 | '../ui/gfx/gfx.gyp:gfx', |
Torne (Richard Coles) | 2a99a7e | 2013-03-28 15:31:22 +0000 | [diff] [blame] | 38 | '../ui/ui.gyp:ui', |
Torne (Richard Coles) | 868fa2f | 2013-06-11 10:57:03 +0100 | [diff] [blame] | 39 | '../url/url.gyp:url_lib', |
Torne (Richard Coles) | 2a99a7e | 2013-03-28 15:31:22 +0000 | [diff] [blame] | 40 | ], |
Torne (Richard Coles) | c2e0dbd | 2013-05-09 18:35:53 +0100 | [diff] [blame] | 41 | '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) | 2a99a7e | 2013-03-28 15:31:22 +0000 | [diff] [blame] | 52 | 'sources': [ |
Ben Murdoch | eb525c5 | 2013-07-10 11:40:50 +0100 | [diff] [blame] | 53 | '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) | 7d4cd47 | 2013-06-19 11:58:07 +0100 | [diff] [blame] | 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', |
Torne (Richard Coles) | 58537e2 | 2013-09-12 12:10:22 +0100 | [diff] [blame] | 65 | 'autofill/core/common/autofill_param_traits_macros.h', |
Torne (Richard Coles) | 7d4cd47 | 2013-06-19 11:58:07 +0100 | [diff] [blame] | 66 | '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) | 58537e2 | 2013-09-12 12:10:22 +0100 | [diff] [blame] | 78 | 'autofill/core/common/password_form.cc', |
| 79 | 'autofill/core/common/password_form.h', |
Torne (Richard Coles) | 7d4cd47 | 2013-06-19 11:58:07 +0100 | [diff] [blame] | 80 | '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) | 2a99a7e | 2013-03-28 15:31:22 +0000 | [diff] [blame] | 86 | ], |
| 87 | }, |
Torne (Richard Coles) | c2e0dbd | 2013-05-09 18:35:53 +0100 | [diff] [blame] | 88 | |
| 89 | { |
Ben Murdoch | eb525c5 | 2013-07-10 11:40:50 +0100 | [diff] [blame] | 90 | 'target_name': 'autofill_core_browser', |
Torne (Richard Coles) | c2e0dbd | 2013-05-09 18:35:53 +0100 | [diff] [blame] | 91 | 'type': 'static_library', |
| 92 | 'include_dirs': [ |
| 93 | '..', |
| 94 | ], |
| 95 | 'dependencies': [ |
Torne (Richard Coles) | 7d4cd47 | 2013-06-19 11:58:07 +0100 | [diff] [blame] | 96 | 'autofill_core_common', |
Torne (Richard Coles) | c2e0dbd | 2013-05-09 18:35:53 +0100 | [diff] [blame] | 97 | 'autofill_regexes', |
Torne (Richard Coles) | c2e0dbd | 2013-05-09 18:35:53 +0100 | [diff] [blame] | 98 | 'encryptor', |
Torne (Richard Coles) | 90dce4d | 2013-05-29 14:40:03 +0100 | [diff] [blame] | 99 | 'user_prefs', |
Torne (Richard Coles) | c2e0dbd | 2013-05-09 18:35:53 +0100 | [diff] [blame] | 100 | 'webdata_common', |
| 101 | '../base/base.gyp:base', |
| 102 | '../base/base.gyp:base_i18n', |
Torne (Richard Coles) | 90dce4d | 2013-05-29 14:40:03 +0100 | [diff] [blame] | 103 | '../base/base.gyp:base_prefs', |
Torne (Richard Coles) | c2e0dbd | 2013-05-09 18:35:53 +0100 | [diff] [blame] | 104 | '../content/content.gyp:content_browser', |
| 105 | '../content/content.gyp:content_common', |
Torne (Richard Coles) | 90dce4d | 2013-05-29 14:40:03 +0100 | [diff] [blame] | 106 | '../google_apis/google_apis.gyp:google_apis', |
Torne (Richard Coles) | c2e0dbd | 2013-05-09 18:35:53 +0100 | [diff] [blame] | 107 | '../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) | 4e180b6 | 2013-10-18 15:46:22 +0100 | [diff] [blame] | 114 | '../ui/gfx/gfx.gyp:gfx', |
Torne (Richard Coles) | c2e0dbd | 2013-05-09 18:35:53 +0100 | [diff] [blame] | 115 | '../ui/ui.gyp:ui', |
Torne (Richard Coles) | 868fa2f | 2013-06-11 10:57:03 +0100 | [diff] [blame] | 116 | '../url/url.gyp:url_lib', |
Ben Murdoch | 7dbb3d5 | 2013-07-17 14:55:54 +0100 | [diff] [blame] | 117 | '../webkit/webkit_resources.gyp:webkit_resources', |
Torne (Richard Coles) | c2e0dbd | 2013-05-09 18:35:53 +0100 | [diff] [blame] | 118 | |
Torne (Richard Coles) | 7d4cd47 | 2013-06-19 11:58:07 +0100 | [diff] [blame] | 119 | 'component_strings.gyp:component_strings', |
Torne (Richard Coles) | c2e0dbd | 2013-05-09 18:35:53 +0100 | [diff] [blame] | 120 | ], |
| 121 | 'sources': [ |
Ben Murdoch | eb525c5 | 2013-07-10 11:40:50 +0100 | [diff] [blame] | 122 | '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) | c2e0dbd | 2013-05-09 18:35:53 +0100 | [diff] [blame] | 212 | |
| 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 Murdoch | ca12bfa | 2013-07-23 11:17:05 +0100 | [diff] [blame] | 222 | 'target_name': 'autofill_core_test_support', |
| 223 | 'type': 'static_library', |
| 224 | 'dependencies': [ |
| 225 | 'autofill_core_common', |
| 226 | 'autofill_core_browser', |
Torne (Richard Coles) | 424c4d7 | 2013-08-30 15:14:49 +0100 | [diff] [blame] | 227 | '../skia/skia.gyp:skia', |
Ben Murdoch | ca12bfa | 2013-07-23 11:17:05 +0100 | [diff] [blame] | 228 | '../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) | f2477e0 | 2013-11-28 11:55:43 +0000 | [diff] [blame] | 233 | 'autofill/core/browser/autofill_test_utils.cc', |
| 234 | 'autofill/core/browser/autofill_test_utils.h', |
Ben Murdoch | ca12bfa | 2013-07-23 11:17:05 +0100 | [diff] [blame] | 235 | '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) | 868fa2f | 2013-06-11 10:57:03 +0100 | [diff] [blame] | 249 | # 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 Murdoch | ca12bfa | 2013-07-23 11:17:05 +0100 | [diff] [blame] | 262 | 'target_name': 'autofill_content_test_support', |
Torne (Richard Coles) | 868fa2f | 2013-06-11 10:57:03 +0100 | [diff] [blame] | 263 | 'type': 'static_library', |
Ben Murdoch | 7dbb3d5 | 2013-07-17 14:55:54 +0100 | [diff] [blame] | 264 | 'dependencies': [ |
| 265 | '../testing/gmock.gyp:gmock', |
| 266 | ], |
Torne (Richard Coles) | 868fa2f | 2013-06-11 10:57:03 +0100 | [diff] [blame] | 267 | 'sources': [ |
Ben Murdoch | 7dbb3d5 | 2013-07-17 14:55:54 +0100 | [diff] [blame] | 268 | 'autofill/content/browser/wallet/mock_wallet_client.cc', |
| 269 | 'autofill/content/browser/wallet/mock_wallet_client.h', |
Torne (Richard Coles) | 868fa2f | 2013-06-11 10:57:03 +0100 | [diff] [blame] | 270 | '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) | 868fa2f | 2013-06-11 10:57:03 +0100 | [diff] [blame] | 282 | 'autofill_content_risk_proto', |
Ben Murdoch | eb525c5 | 2013-07-10 11:40:50 +0100 | [diff] [blame] | 283 | 'autofill_core_browser', |
Torne (Richard Coles) | 7d4cd47 | 2013-06-19 11:58:07 +0100 | [diff] [blame] | 284 | 'autofill_core_common', |
Torne (Richard Coles) | 868fa2f | 2013-06-11 10:57:03 +0100 | [diff] [blame] | 285 | '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) | 4e180b6 | 2013-10-18 15:46:22 +0100 | [diff] [blame] | 302 | '../ui/gfx/gfx.gyp:gfx', |
Torne (Richard Coles) | 868fa2f | 2013-06-11 10:57:03 +0100 | [diff] [blame] | 303 | '../ui/ui.gyp:ui', |
| 304 | '../url/url.gyp:url_lib', |
Ben Murdoch | 7dbb3d5 | 2013-07-17 14:55:54 +0100 | [diff] [blame] | 305 | '../webkit/webkit_resources.gyp:webkit_resources', |
Torne (Richard Coles) | 868fa2f | 2013-06-11 10:57:03 +0100 | [diff] [blame] | 306 | |
Torne (Richard Coles) | 7d4cd47 | 2013-06-19 11:58:07 +0100 | [diff] [blame] | 307 | 'component_strings.gyp:component_strings', |
Torne (Richard Coles) | 868fa2f | 2013-06-11 10:57:03 +0100 | [diff] [blame] | 308 | ], |
| 309 | 'sources': [ |
Torne (Richard Coles) | 7d4cd47 | 2013-06-19 11:58:07 +0100 | [diff] [blame] | 310 | 'autofill/content/browser/autofill_driver_impl.cc', |
| 311 | 'autofill/content/browser/autofill_driver_impl.h', |
Torne (Richard Coles) | a3f6a49 | 2013-12-18 16:25:09 +0000 | [diff] [blame^] | 312 | 'autofill/content/browser/request_autocomplete_manager.cc', |
| 313 | 'autofill/content/browser/request_autocomplete_manager.h', |
Torne (Richard Coles) | 868fa2f | 2013-06-11 10:57:03 +0100 | [diff] [blame] | 314 | 'autofill/content/browser/risk/fingerprint.cc', |
| 315 | 'autofill/content/browser/risk/fingerprint.h', |
Torne (Richard Coles) | 7d4cd47 | 2013-06-19 11:58:07 +0100 | [diff] [blame] | 316 | 'autofill/content/browser/wallet/form_field_error.cc', |
| 317 | 'autofill/content/browser/wallet/form_field_error.h', |
Torne (Richard Coles) | 868fa2f | 2013-06-11 10:57:03 +0100 | [diff] [blame] | 318 | 'autofill/content/browser/wallet/full_wallet.cc', |
| 319 | 'autofill/content/browser/wallet/full_wallet.h', |
Torne (Richard Coles) | a3f6a49 | 2013-12-18 16:25:09 +0000 | [diff] [blame^] | 320 | 'autofill/content/browser/wallet/gaia_account.cc', |
| 321 | 'autofill/content/browser/wallet/gaia_account.h', |
Torne (Richard Coles) | 868fa2f | 2013-06-11 10:57:03 +0100 | [diff] [blame] | 322 | '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) | c2e0dbd | 2013-05-09 18:35:53 +0100 | [diff] [blame] | 345 | 'type': 'static_library', |
| 346 | 'include_dirs': [ |
| 347 | '..', |
| 348 | ], |
| 349 | 'dependencies': [ |
Torne (Richard Coles) | 7d4cd47 | 2013-06-19 11:58:07 +0100 | [diff] [blame] | 350 | 'autofill_core_common', |
Torne (Richard Coles) | c2e0dbd | 2013-05-09 18:35:53 +0100 | [diff] [blame] | 351 | '../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) | 7d4cd47 | 2013-06-19 11:58:07 +0100 | [diff] [blame] | 357 | 'component_strings.gyp:component_strings', |
Torne (Richard Coles) | c2e0dbd | 2013-05-09 18:35:53 +0100 | [diff] [blame] | 358 | ], |
| 359 | 'sources': [ |
Torne (Richard Coles) | 868fa2f | 2013-06-11 10:57:03 +0100 | [diff] [blame] | 360 | '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) | 58537e2 | 2013-09-12 12:10:22 +0100 | [diff] [blame] | 371 | 'autofill/content/renderer/password_form_conversion_utils.cc', |
| 372 | 'autofill/content/renderer/password_form_conversion_utils.h', |
Torne (Richard Coles) | 4e180b6 | 2013-10-18 15:46:22 +0100 | [diff] [blame] | 373 | 'autofill/content/renderer/password_generation_agent.cc', |
| 374 | 'autofill/content/renderer/password_generation_agent.h', |
Torne (Richard Coles) | c2e0dbd | 2013-05-09 18:35:53 +0100 | [diff] [blame] | 375 | ], |
| 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 Murdoch | eb525c5 | 2013-07-10 11:40:50 +0100 | [diff] [blame] | 391 | 'java_in_dir': 'autofill/core/browser/android/java', |
Torne (Richard Coles) | c2e0dbd | 2013-05-09 18:35:53 +0100 | [diff] [blame] | 392 | }, |
| 393 | 'includes': [ '../build/java.gypi' ], |
| 394 | }, |
| 395 | { |
| 396 | 'target_name': 'autofill_jni_headers', |
| 397 | 'type': 'none', |
| 398 | 'sources': [ |
Ben Murdoch | eb525c5 | 2013-07-10 11:40:50 +0100 | [diff] [blame] | 399 | 'autofill/core/browser/android/java/src/org/chromium/components/browser/autofill/PersonalAutofillPopulator.java', |
Torne (Richard Coles) | c2e0dbd | 2013-05-09 18:35:53 +0100 | [diff] [blame] | 400 | ], |
| 401 | 'variables': { |
| 402 | 'jni_gen_package': 'autofill', |
| 403 | }, |
| 404 | 'includes': [ '../build/jni_generator.gypi' ], |
| 405 | }, |
Torne (Richard Coles) | 2a99a7e | 2013-03-28 15:31:22 +0000 | [diff] [blame] | 406 | ], |
| 407 | }], |
| 408 | ], |
| 409 | } |