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

Side by Side Diff: components/autofill.gypi

Issue 108283005: Moved ipc-specific files from autofill/core to autofill/content. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: "Final" fix. 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
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',
(...skipping 13 matching lines...) Expand all
24 }, 24 },
25 ], 25 ],
26 'conditions': [ 26 'conditions': [
27 ['OS != "ios"', { 27 ['OS != "ios"', {
28 'targets': [ 28 'targets': [
29 { 29 {
30 'target_name': 'autofill_core_common', 30 'target_name': 'autofill_core_common',
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',
35 '../ipc/ipc.gyp:ipc',
36 '../third_party/WebKit/public/blink.gyp:blink_minimal',
37 '../ui/gfx/gfx.gyp:gfx', 34 '../ui/gfx/gfx.gyp:gfx',
38 '../ui/ui.gyp:ui', 35 '../ui/ui.gyp:ui',
39 '../url/url.gyp:url_lib', 36 '../url/url.gyp:url_lib',
40 ], 37 ],
41 'conditions': [ 38 'conditions': [
42 ['OS == "android"', { 39 ['OS == "android"', {
43 'dependencies': [ 40 'dependencies': [
44 'autofill_jni_headers', 41 'autofill_jni_headers',
45 ], 42 ],
46 }], 43 }],
47 ], 44 ],
48 'include_dirs': [ 45 'include_dirs': [
49 '..', 46 '..',
50 '<(SHARED_INTERMEDIATE_DIR)/autofill' 47 '<(SHARED_INTERMEDIATE_DIR)/autofill',
51 ], 48 ],
52 'sources': [ 49 'sources': [
53 'autofill/core/browser/android/auxiliary_profile_loader_android.cc', 50 'autofill/core/browser/android/auxiliary_profile_loader_android.cc',
54 'autofill/core/browser/android/auxiliary_profile_loader_android.h', 51 'autofill/core/browser/android/auxiliary_profile_loader_android.h',
55 'autofill/core/browser/android/auxiliary_profiles_android.cc', 52 'autofill/core/browser/android/auxiliary_profiles_android.cc',
56 'autofill/core/browser/android/auxiliary_profiles_android.h', 53 'autofill/core/browser/android/auxiliary_profiles_android.h',
57 'autofill/core/browser/android/component_jni_registrar.cc', 54 'autofill/core/browser/android/component_jni_registrar.cc',
58 'autofill/core/browser/android/component_jni_registrar.h', 55 'autofill/core/browser/android/component_jni_registrar.h',
59 'autofill/core/browser/android/personal_data_manager_android.cc', 56 'autofill/core/browser/android/personal_data_manager_android.cc',
60 'autofill/core/common/autofill_constants.cc', 57 'autofill/core/common/autofill_constants.cc',
61 'autofill/core/common/autofill_constants.h', 58 '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',
65 'autofill/core/common/autofill_param_traits_macros.h',
66 'autofill/core/common/autofill_pref_names.cc', 59 'autofill/core/common/autofill_pref_names.cc',
67 'autofill/core/common/autofill_pref_names.h', 60 'autofill/core/common/autofill_pref_names.h',
68 'autofill/core/common/autofill_switches.cc', 61 'autofill/core/common/autofill_switches.cc',
69 'autofill/core/common/autofill_switches.h', 62 'autofill/core/common/autofill_switches.h',
70 'autofill/core/common/form_data.cc', 63 'autofill/core/common/form_data.cc',
71 'autofill/core/common/form_data.h', 64 'autofill/core/common/form_data.h',
72 'autofill/core/common/form_data_predictions.cc', 65 'autofill/core/common/form_data_predictions.cc',
73 'autofill/core/common/form_data_predictions.h', 66 'autofill/core/common/form_data_predictions.h',
74 'autofill/core/common/form_field_data.cc', 67 'autofill/core/common/form_field_data.cc',
75 'autofill/core/common/form_field_data.h', 68 'autofill/core/common/form_field_data.h',
76 'autofill/core/common/form_field_data_predictions.cc', 69 'autofill/core/common/form_field_data_predictions.cc',
77 'autofill/core/common/form_field_data_predictions.h', 70 'autofill/core/common/form_field_data_predictions.h',
78 'autofill/core/common/password_form.cc', 71 'autofill/core/common/password_form.cc',
79 'autofill/core/common/password_form.h', 72 'autofill/core/common/password_form.h',
80 'autofill/core/common/password_form_fill_data.cc', 73 'autofill/core/common/password_form_fill_data.cc',
81 'autofill/core/common/password_form_fill_data.h', 74 'autofill/core/common/password_form_fill_data.h',
82 'autofill/core/common/password_generation_util.cc', 75 'autofill/core/common/password_generation_util.cc',
83 'autofill/core/common/password_generation_util.h', 76 'autofill/core/common/password_generation_util.h',
84 'autofill/core/common/web_element_descriptor.cc', 77 'autofill/core/common/web_element_descriptor.cc',
85 'autofill/core/common/web_element_descriptor.h', 78 'autofill/core/common/web_element_descriptor.h',
86 ], 79 ],
87 }, 80 },
88 81
89 { 82 {
83 'target_name': 'autofill_content_common',
84 'type': 'static_library',
85 'dependencies': [
86 'autofill_core_common',
87 '../base/base.gyp:base',
88 '../content/content.gyp:content_common',
89 '../ipc/ipc.gyp:ipc',
90 '../third_party/WebKit/public/blink.gyp:blink_minimal',
91 '../ui/gfx/gfx.gyp:gfx',
92 ],
93 'include_dirs': [
94 '..',
95 ],
96 'sources': [
97 'autofill/content/common/autofill_messages.h',
98 'autofill/content/common/autofill_message_generator.cc',
99 'autofill/content/common/autofill_message_generator.h',
100 'autofill/content/common/autofill_param_traits_macros.h',
101 ],
102 },
103
104 {
90 'target_name': 'autofill_core_browser', 105 'target_name': 'autofill_core_browser',
91 'type': 'static_library', 106 'type': 'static_library',
92 'include_dirs': [ 107 'include_dirs': [
93 '..', 108 '..',
94 ], 109 ],
95 'dependencies': [ 110 'dependencies': [
96 'autofill_core_common', 111 'autofill_core_common',
97 'autofill_regexes', 112 'autofill_regexes',
98 'encryptor', 113 'encryptor',
99 'user_prefs', 114 'user_prefs',
100 'webdata_common', 115 'webdata_common',
101 '../base/base.gyp:base', 116 '../base/base.gyp:base',
102 '../base/base.gyp:base_i18n', 117 '../base/base.gyp:base_i18n',
103 '../base/base.gyp:base_prefs', 118 '../base/base.gyp:base_prefs',
104 '../content/content.gyp:content_browser', 119 '../content/content.gyp:content_browser',
105 '../content/content.gyp:content_common', 120 '../content/content.gyp:content_common',
106 '../google_apis/google_apis.gyp:google_apis', 121 '../google_apis/google_apis.gyp:google_apis',
107 '../ipc/ipc.gyp:ipc',
108 '../skia/skia.gyp:skia', 122 '../skia/skia.gyp:skia',
109 '../sql/sql.gyp:sql', 123 '../sql/sql.gyp:sql',
110 '../third_party/icu/icu.gyp:icui18n', 124 '../third_party/icu/icu.gyp:icui18n',
111 '../third_party/icu/icu.gyp:icuuc', 125 '../third_party/icu/icu.gyp:icuuc',
112 '../third_party/libjingle/libjingle.gyp:libjingle', 126 '../third_party/libjingle/libjingle.gyp:libjingle',
113 '../third_party/libphonenumber/libphonenumber.gyp:libphonenumber', 127 '../third_party/libphonenumber/libphonenumber.gyp:libphonenumber',
114 '../ui/gfx/gfx.gyp:gfx', 128 '../ui/gfx/gfx.gyp:gfx',
115 '../ui/ui.gyp:ui', 129 '../ui/ui.gyp:ui',
116 '../url/url.gyp:url_lib', 130 '../url/url.gyp:url_lib',
117 '../webkit/webkit_resources.gyp:webkit_resources', 131 '../webkit/webkit_resources.gyp:webkit_resources',
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
272 ], 286 ],
273 'include_dirs': [ '..' ], 287 'include_dirs': [ '..' ],
274 }, 288 },
275 { 289 {
276 'target_name': 'autofill_content_browser', 290 'target_name': 'autofill_content_browser',
277 'type': 'static_library', 291 'type': 'static_library',
278 'include_dirs': [ 292 'include_dirs': [
279 '..', 293 '..',
280 ], 294 ],
281 'dependencies': [ 295 'dependencies': [
296 'autofill_content_common',
282 'autofill_content_risk_proto', 297 'autofill_content_risk_proto',
283 'autofill_core_browser', 298 'autofill_core_browser',
284 'autofill_core_common', 299 'autofill_core_common',
285 'autofill_regexes', 300 'autofill_regexes',
286 'encryptor', 301 'encryptor',
287 'user_prefs', 302 'user_prefs',
288 'webdata_common', 303 'webdata_common',
289 '../base/base.gyp:base', 304 '../base/base.gyp:base',
290 '../base/base.gyp:base_i18n', 305 '../base/base.gyp:base_i18n',
291 '../base/base.gyp:base_prefs', 306 '../base/base.gyp:base_prefs',
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
340 'msvs_disabled_warnings': [4267, ], 355 'msvs_disabled_warnings': [4267, ],
341 }, 356 },
342 357
343 { 358 {
344 'target_name': 'autofill_content_renderer', 359 'target_name': 'autofill_content_renderer',
345 'type': 'static_library', 360 'type': 'static_library',
346 'include_dirs': [ 361 'include_dirs': [
347 '..', 362 '..',
348 ], 363 ],
349 'dependencies': [ 364 'dependencies': [
365 'autofill_content_common',
350 'autofill_core_common', 366 'autofill_core_common',
351 '../base/base.gyp:base', 367 '../base/base.gyp:base',
352 '../content/content.gyp:content_renderer', 368 '../content/content.gyp:content_renderer',
353 '../content/content.gyp:content_common', 369 '../content/content.gyp:content_common',
354 '../ipc/ipc.gyp:ipc', 370 '../ipc/ipc.gyp:ipc',
355 '../skia/skia.gyp:skia', 371 '../skia/skia.gyp:skia',
356 372
357 'component_strings.gyp:component_strings', 373 'component_strings.gyp:component_strings',
358 ], 374 ],
359 'sources': [ 375 'sources': [
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
400 ], 416 ],
401 'variables': { 417 'variables': {
402 'jni_gen_package': 'autofill', 418 'jni_gen_package': 'autofill',
403 }, 419 },
404 'includes': [ '../build/jni_generator.gypi' ], 420 'includes': [ '../build/jni_generator.gypi' ],
405 }, 421 },
406 ], 422 ],
407 }], 423 }],
408 ], 424 ],
409 } 425 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698