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

Side by Side Diff: components/autofill.gypi

Issue 17084005: In components/autofill, move common/ to shared/ (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Rebase to fix conflict Created 7 years, 6 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
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/browser/autofill_regex_constants.cc.utf8', 15 'autofill/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/browser/autofill_regex_constants.cc.utf8'], 22 'autofill/browser/autofill_regex_constants.cc.utf8'],
23 }], 23 }],
24 }, 24 },
25 ], 25 ],
26 'conditions': [ 26 'conditions': [
27 ['OS != "ios"', { 27 ['OS != "ios"', {
28 'targets': [ 28 'targets': [
29 { 29 {
30 'target_name': 'autofill_common', 30 'target_name': 'autofill_shared',
31 'type': 'static_library', 31 'type': 'static_library',
32 'dependencies': [ 32 'dependencies': [
33 '../base/base.gyp:base', 33 '../base/base.gyp:base',
34 '../content/content.gyp:content_common', 34 '../content/content.gyp:content_common',
35 '../ipc/ipc.gyp:ipc', 35 '../ipc/ipc.gyp:ipc',
36 '../third_party/WebKit/public/blink.gyp:blink', 36 '../third_party/WebKit/public/blink.gyp:blink',
37 '../ui/ui.gyp:ui', 37 '../ui/ui.gyp:ui',
38 '../url/url.gyp:url_lib', 38 '../url/url.gyp:url_lib',
39 ], 39 ],
40 'conditions': [ 40 'conditions': [
41 ['OS == "android"', { 41 ['OS == "android"', {
42 'dependencies': [ 42 'dependencies': [
43 'autofill_jni_headers', 43 'autofill_jni_headers',
44 ], 44 ],
45 }], 45 }],
46 ], 46 ],
47 'include_dirs': [ 47 'include_dirs': [
48 '..', 48 '..',
49 '<(SHARED_INTERMEDIATE_DIR)/autofill' 49 '<(SHARED_INTERMEDIATE_DIR)/autofill'
50 ], 50 ],
51 'sources': [ 51 'sources': [
52 'autofill/browser/android/auxiliary_profile_loader_android.cc', 52 'autofill/browser/android/auxiliary_profile_loader_android.cc',
53 'autofill/browser/android/auxiliary_profile_loader_android.h', 53 'autofill/browser/android/auxiliary_profile_loader_android.h',
54 'autofill/browser/android/auxiliary_profiles_android.cc', 54 'autofill/browser/android/auxiliary_profiles_android.cc',
55 'autofill/browser/android/auxiliary_profiles_android.h', 55 'autofill/browser/android/auxiliary_profiles_android.h',
56 'autofill/browser/android/component_jni_registrar.cc', 56 'autofill/browser/android/component_jni_registrar.cc',
57 'autofill/browser/android/component_jni_registrar.h', 57 'autofill/browser/android/component_jni_registrar.h',
58 'autofill/browser/android/personal_data_manager_android.cc', 58 'autofill/browser/android/personal_data_manager_android.cc',
59 'autofill/common/autocheckout_status.h', 59 'autofill/shared/autocheckout_status.h',
60 'autofill/common/autofill_constants.cc', 60 'autofill/shared/autofill_constants.cc',
61 'autofill/common/autofill_constants.h', 61 'autofill/shared/autofill_constants.h',
62 'autofill/common/autofill_messages.h', 62 'autofill/shared/autofill_messages.h',
63 'autofill/common/autofill_message_generator.cc', 63 'autofill/shared/autofill_message_generator.cc',
64 'autofill/common/autofill_message_generator.h', 64 'autofill/shared/autofill_message_generator.h',
65 'autofill/common/autofill_pref_names.cc', 65 'autofill/shared/autofill_pref_names.cc',
66 'autofill/common/autofill_pref_names.h', 66 'autofill/shared/autofill_pref_names.h',
67 'autofill/common/autofill_switches.cc', 67 'autofill/shared/autofill_switches.cc',
68 'autofill/common/autofill_switches.h', 68 'autofill/shared/autofill_switches.h',
69 'autofill/common/form_data.cc', 69 'autofill/shared/form_data.cc',
70 'autofill/common/form_data.h', 70 'autofill/shared/form_data.h',
71 'autofill/common/form_data_predictions.cc', 71 'autofill/shared/form_data_predictions.cc',
72 'autofill/common/form_data_predictions.h', 72 'autofill/shared/form_data_predictions.h',
73 'autofill/common/form_field_data.cc', 73 'autofill/shared/form_field_data.cc',
74 'autofill/common/form_field_data.h', 74 'autofill/shared/form_field_data.h',
75 'autofill/common/form_field_data_predictions.cc', 75 'autofill/shared/form_field_data_predictions.cc',
76 'autofill/common/form_field_data_predictions.h', 76 'autofill/shared/form_field_data_predictions.h',
77 'autofill/common/password_form_fill_data.cc', 77 'autofill/shared/password_form_fill_data.cc',
78 'autofill/common/password_form_fill_data.h', 78 'autofill/shared/password_form_fill_data.h',
79 'autofill/common/password_generation_util.cc', 79 'autofill/shared/password_generation_util.cc',
80 'autofill/common/password_generation_util.h', 80 'autofill/shared/password_generation_util.h',
81 'autofill/common/web_element_descriptor.cc', 81 'autofill/shared/web_element_descriptor.cc',
82 'autofill/common/web_element_descriptor.h', 82 'autofill/shared/web_element_descriptor.h',
83 ], 83 ],
84 }, 84 },
85 85
86 { 86 {
87 # TODO(blundell): Eliminate this target; instead, have only the 87 # TODO(blundell): Eliminate this target; instead, have only the
88 # autofill_content_browser target and a new top-level 88 # autofill_content_browser target and a new top-level
89 # autofill_shared target. crbug.com/247015 89 # autofill_shared target. crbug.com/247015
90 'target_name': 'autofill_browser', 90 'target_name': 'autofill_browser',
91 'type': 'static_library', 91 'type': 'static_library',
92 'include_dirs': [ 92 'include_dirs': [
93 '..', 93 '..',
94 ], 94 ],
95 'dependencies': [ 95 'dependencies': [
96 'autofill_common', 96 'autofill_shared',
97 'autofill_regexes', 97 'autofill_regexes',
98 'encryptor', 98 'encryptor',
99 'user_prefs', 99 'user_prefs',
100 'webdata_common', 100 'webdata_common',
101 '../base/base.gyp:base', 101 '../base/base.gyp:base',
102 '../base/base.gyp:base_i18n', 102 '../base/base.gyp:base_i18n',
103 '../base/base.gyp:base_prefs', 103 '../base/base.gyp:base_prefs',
104 '../content/content.gyp:content_browser', 104 '../content/content.gyp:content_browser',
105 '../content/content.gyp:content_common', 105 '../content/content.gyp:content_common',
106 '../google_apis/google_apis.gyp:google_apis', 106 '../google_apis/google_apis.gyp:google_apis',
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
239 'include_dirs': [ '..' ], 239 'include_dirs': [ '..' ],
240 }, 240 },
241 { 241 {
242 'target_name': 'autofill_content_browser', 242 'target_name': 'autofill_content_browser',
243 'type': 'static_library', 243 'type': 'static_library',
244 'include_dirs': [ 244 'include_dirs': [
245 '..', 245 '..',
246 ], 246 ],
247 'dependencies': [ 247 'dependencies': [
248 'autofill_browser', 248 'autofill_browser',
249 'autofill_common', 249 'autofill_shared',
250 'autofill_content_risk_proto', 250 'autofill_content_risk_proto',
251 'autofill_regexes', 251 'autofill_regexes',
252 'encryptor', 252 'encryptor',
253 'user_prefs', 253 'user_prefs',
254 'webdata_common', 254 'webdata_common',
255 '../base/base.gyp:base', 255 '../base/base.gyp:base',
256 '../base/base.gyp:base_i18n', 256 '../base/base.gyp:base_i18n',
257 '../base/base.gyp:base_prefs', 257 '../base/base.gyp:base_prefs',
258 '../content/content.gyp:content_browser', 258 '../content/content.gyp:content_browser',
259 '../content/content.gyp:content_common', 259 '../content/content.gyp:content_common',
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
310 'msvs_disabled_warnings': [4267, ], 310 'msvs_disabled_warnings': [4267, ],
311 }, 311 },
312 312
313 { 313 {
314 'target_name': 'autofill_content_renderer', 314 'target_name': 'autofill_content_renderer',
315 'type': 'static_library', 315 'type': 'static_library',
316 'include_dirs': [ 316 'include_dirs': [
317 '..', 317 '..',
318 ], 318 ],
319 'dependencies': [ 319 'dependencies': [
320 'autofill_common', 320 'autofill_shared',
321 '../base/base.gyp:base', 321 '../base/base.gyp:base',
322 '../content/content.gyp:content_renderer', 322 '../content/content.gyp:content_renderer',
323 '../content/content.gyp:content_common', 323 '../content/content.gyp:content_common',
324 '../ipc/ipc.gyp:ipc', 324 '../ipc/ipc.gyp:ipc',
325 '../skia/skia.gyp:skia', 325 '../skia/skia.gyp:skia',
326 326
327 'component_resources.gyp:component_resources', 327 'component_resources.gyp:component_resources',
328 ], 328 ],
329 'sources': [ 329 'sources': [
330 'autofill/content/renderer/autofill_agent.cc', 330 'autofill/content/renderer/autofill_agent.cc',
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
368 ], 368 ],
369 'variables': { 369 'variables': {
370 'jni_gen_package': 'autofill', 370 'jni_gen_package': 'autofill',
371 }, 371 },
372 'includes': [ '../build/jni_generator.gypi' ], 372 'includes': [ '../build/jni_generator.gypi' ],
373 }, 373 },
374 ], 374 ],
375 }], 375 }],
376 ], 376 ],
377 } 377 }
OLDNEW
« no previous file with comments | « chrome/renderer/autofill/password_generation_manager_browsertest.cc ('k') | components/autofill/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698