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

Side by Side Diff: components/autofill.gypi

Issue 12282004: Added personal_data_manager android implementation for auto-populating auto-fill on android builds … (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Autofill populator components refactor Created 7 years, 9 months 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 | Annotate | Revision Log
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 'target_name': 'autofill_regexes', 8 'target_name': 'autofill_regexes',
9 'type': 'none', 9 'type': 'none',
10 'actions': [{ 10 'actions': [{
(...skipping 23 matching lines...) Expand all
34 }, 34 },
35 'includes': [ '../build/protoc.gypi' ] 35 'includes': [ '../build/protoc.gypi' ]
36 }, 36 },
37 ], 37 ],
38 'conditions': [ 38 'conditions': [
39 ['OS != "ios"', { 39 ['OS != "ios"', {
40 'targets': [ 40 'targets': [
41 { 41 {
42 'target_name': 'autofill_common', 42 'target_name': 'autofill_common',
43 'type': 'static_library', 43 'type': 'static_library',
44 'include_dirs': [
45 '..',
46 ],
47 'dependencies': [ 44 'dependencies': [
48 '../base/base.gyp:base', 45 '../base/base.gyp:base',
49 '../build/temp_gyp/googleurl.gyp:googleurl', 46 '../build/temp_gyp/googleurl.gyp:googleurl',
50 '../content/content.gyp:content_common', 47 '../content/content.gyp:content_common',
51 '../ipc/ipc.gyp:ipc', 48 '../ipc/ipc.gyp:ipc',
52 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', 49 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit',
53 '../ui/ui.gyp:ui', 50 '../ui/ui.gyp:ui',
51 'autofill_android_jni_headers',
52 ],
53 'include_dirs': [
54 '..',
55 '<(SHARED_INTERMEDIATE_DIR)/autofill_android'
54 ], 56 ],
55 'sources': [ 57 'sources': [
58 'autofill/browser/android/auxiliary_profile_loader_android.cc',
59 'autofill/browser/android/auxiliary_profile_loader_android.h',
60 'autofill/browser/android/auxiliary_profiles_android.cc',
61 'autofill/browser/android/auxiliary_profiles_android.h',
62 'autofill/browser/android/component_jni_registrar.cc',
63 'autofill/browser/android/component_jni_registrar.h',
64 'autofill/browser/android/personal_data_manager_android.cc',
56 'autofill/common/autocheckout_status.h', 65 'autofill/common/autocheckout_status.h',
57 'autofill/common/autofill_constants.cc', 66 'autofill/common/autofill_constants.cc',
58 'autofill/common/autofill_constants.h', 67 'autofill/common/autofill_constants.h',
59 'autofill/common/autofill_messages.h', 68 'autofill/common/autofill_messages.h',
60 'autofill/common/autofill_pref_names.cc', 69 'autofill/common/autofill_pref_names.cc',
61 'autofill/common/autofill_pref_names.h', 70 'autofill/common/autofill_pref_names.h',
62 'autofill/common/autofill_switches.cc', 71 'autofill/common/autofill_switches.cc',
63 'autofill/common/autofill_switches.h', 72 'autofill/common/autofill_switches.h',
64 'autofill/common/form_data.cc', 73 'autofill/common/form_data.cc',
65 'autofill/common/form_data.h', 74 'autofill/common/form_data.h',
66 'autofill/common/form_data_predictions.cc', 75 'autofill/common/form_data_predictions.cc',
67 'autofill/common/form_data_predictions.h', 76 'autofill/common/form_data_predictions.h',
68 'autofill/common/form_field_data.cc', 77 'autofill/common/form_field_data.cc',
69 'autofill/common/form_field_data.h', 78 'autofill/common/form_field_data.h',
70 'autofill/common/form_field_data_predictions.cc', 79 'autofill/common/form_field_data_predictions.cc',
71 'autofill/common/form_field_data_predictions.h', 80 'autofill/common/form_field_data_predictions.h',
72 'autofill/common/password_form_fill_data.cc', 81 'autofill/common/password_form_fill_data.cc',
73 'autofill/common/password_form_fill_data.h', 82 'autofill/common/password_form_fill_data.h',
74 'autofill/common/password_generation_util.cc', 83 'autofill/common/password_generation_util.cc',
75 'autofill/common/password_generation_util.h', 84 'autofill/common/password_generation_util.h',
76 'autofill/common/web_element_descriptor.cc', 85 'autofill/common/web_element_descriptor.cc',
77 'autofill/common/web_element_descriptor.h', 86 'autofill/common/web_element_descriptor.h',
78 ], 87 ],
79 }, 88 },
80 ], 89 ],
81 }], 90 }],
91 ['OS == "android"', {
92 'targets': [
93 {
94 'target_name': 'autofill_android_java',
Yaron 2013/03/16 00:15:30 the android is redundant in target_naems and the l
apiccion 2013/03/18 19:30:36 Done.
95 'type': 'none',
96 'dependencies': [
97 '../base/base.gyp:base',
98 '../content/content.gyp:content_java',
99 ],
100 'variables': {
101 'java_in_dir': 'autofill/browser/android/java',
102 },
103 'includes': [ '../build/java.gypi' ],
104 },
105 {
106 'target_name': 'autofill_android_jni_headers',
Yaron 2013/03/16 00:15:30 autofill_jni_headers
apiccion 2013/03/18 19:30:36 Done.
107 'type': 'none',
108 'sources': [
109 'autofill/browser/android/java/src/org/chromium/components/browser/a utofill/PersonalAutofillPopulator.java',
110 ],
111 'variables': {
112 'jni_gen_package': 'autofill_android',
Yaron 2013/03/16 00:15:30 autofill
apiccion 2013/03/18 19:30:36 Done.
113 },
114 'includes': [ '../build/jni_generator.gypi' ],
115 },
116 ],
117 }],
82 ], 118 ],
83 } 119 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698