summaryrefslogtreecommitdiffstats
path: root/components/autofill.gypi
diff options
context:
space:
mode:
authorblundell@chromium.org <blundell@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-15 15:35:25 +0000
committerblundell@chromium.org <blundell@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-15 15:35:25 +0000
commitfe014d19c0bac2bb05701ddb0d32119fe4f17c9f (patch)
treec028e86f108a2695329346b39edb15b2709d82ae /components/autofill.gypi
parentaa7e01d14edcd8cdf3b4f81bc0fae1b2064ba34c (diff)
downloadchromium_src-fe014d19c0bac2bb05701ddb0d32119fe4f17c9f.zip
chromium_src-fe014d19c0bac2bb05701ddb0d32119fe4f17c9f.tar.gz
chromium_src-fe014d19c0bac2bb05701ddb0d32119fe4f17c9f.tar.bz2
In components/autofill, move common/ to shared/
This change is part of moving autofill into its eventual structure of a layered component. autofill/components/shared/ is a new directory that will hold code that is shared by all platforms (including iOS). This CL populates that directory with the code that is currently in autofill/components/common/; a follow-up CL will move the contents of autofill/components/browser into this directory as well. This CL additionally imposes the correct DEPS restrictions on autofill/components/shared/, with temporary allowances for the current violating includes. TBR=joi, thakis, benm BUG=247015 Review URL: https://chromiumcodereview.appspot.com/17084005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@206593 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'components/autofill.gypi')
-rw-r--r--components/autofill.gypi56
1 files changed, 28 insertions, 28 deletions
diff --git a/components/autofill.gypi b/components/autofill.gypi
index 3d2f446..a61cf07 100644
--- a/components/autofill.gypi
+++ b/components/autofill.gypi
@@ -27,7 +27,7 @@
['OS != "ios"', {
'targets': [
{
- 'target_name': 'autofill_common',
+ 'target_name': 'autofill_shared',
'type': 'static_library',
'dependencies': [
'../base/base.gyp:base',
@@ -56,30 +56,30 @@
'autofill/browser/android/component_jni_registrar.cc',
'autofill/browser/android/component_jni_registrar.h',
'autofill/browser/android/personal_data_manager_android.cc',
- 'autofill/common/autocheckout_status.h',
- 'autofill/common/autofill_constants.cc',
- 'autofill/common/autofill_constants.h',
- 'autofill/common/autofill_messages.h',
- 'autofill/common/autofill_message_generator.cc',
- 'autofill/common/autofill_message_generator.h',
- 'autofill/common/autofill_pref_names.cc',
- 'autofill/common/autofill_pref_names.h',
- 'autofill/common/autofill_switches.cc',
- 'autofill/common/autofill_switches.h',
- 'autofill/common/form_data.cc',
- 'autofill/common/form_data.h',
- 'autofill/common/form_data_predictions.cc',
- 'autofill/common/form_data_predictions.h',
- 'autofill/common/form_field_data.cc',
- 'autofill/common/form_field_data.h',
- 'autofill/common/form_field_data_predictions.cc',
- 'autofill/common/form_field_data_predictions.h',
- 'autofill/common/password_form_fill_data.cc',
- 'autofill/common/password_form_fill_data.h',
- 'autofill/common/password_generation_util.cc',
- 'autofill/common/password_generation_util.h',
- 'autofill/common/web_element_descriptor.cc',
- 'autofill/common/web_element_descriptor.h',
+ 'autofill/shared/autocheckout_status.h',
+ 'autofill/shared/autofill_constants.cc',
+ 'autofill/shared/autofill_constants.h',
+ 'autofill/shared/autofill_messages.h',
+ 'autofill/shared/autofill_message_generator.cc',
+ 'autofill/shared/autofill_message_generator.h',
+ 'autofill/shared/autofill_pref_names.cc',
+ 'autofill/shared/autofill_pref_names.h',
+ 'autofill/shared/autofill_switches.cc',
+ 'autofill/shared/autofill_switches.h',
+ 'autofill/shared/form_data.cc',
+ 'autofill/shared/form_data.h',
+ 'autofill/shared/form_data_predictions.cc',
+ 'autofill/shared/form_data_predictions.h',
+ 'autofill/shared/form_field_data.cc',
+ 'autofill/shared/form_field_data.h',
+ 'autofill/shared/form_field_data_predictions.cc',
+ 'autofill/shared/form_field_data_predictions.h',
+ 'autofill/shared/password_form_fill_data.cc',
+ 'autofill/shared/password_form_fill_data.h',
+ 'autofill/shared/password_generation_util.cc',
+ 'autofill/shared/password_generation_util.h',
+ 'autofill/shared/web_element_descriptor.cc',
+ 'autofill/shared/web_element_descriptor.h',
],
},
@@ -93,7 +93,7 @@
'..',
],
'dependencies': [
- 'autofill_common',
+ 'autofill_shared',
'autofill_regexes',
'encryptor',
'user_prefs',
@@ -246,7 +246,7 @@
],
'dependencies': [
'autofill_browser',
- 'autofill_common',
+ 'autofill_shared',
'autofill_content_risk_proto',
'autofill_regexes',
'encryptor',
@@ -317,7 +317,7 @@
'..',
],
'dependencies': [
- 'autofill_common',
+ 'autofill_shared',
'../base/base.gyp:base',
'../content/content.gyp:content_renderer',
'../content/content.gyp:content_common',