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

Side by Side Diff: components/autofill.gypi

Issue 109433013: Move geometric types to a separate, more lightweight target. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . 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 | 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 # 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 17 matching lines...) Expand all
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', 34 '../content/content.gyp:content_common',
35 '../ipc/ipc.gyp:ipc', 35 '../ipc/ipc.gyp:ipc',
36 '../third_party/WebKit/public/blink.gyp:blink_minimal', 36 '../third_party/WebKit/public/blink.gyp:blink_minimal',
37 '../ui/gfx/gfx.gyp:gfx', 37 '../ui/gfx/gfx.gyp:gfx',
38 '../ui/gfx/gfx.gyp:gfx_geometry',
38 '../ui/ui.gyp:ui', 39 '../ui/ui.gyp:ui',
39 '../url/url.gyp:url_lib', 40 '../url/url.gyp:url_lib',
40 ], 41 ],
41 'conditions': [ 42 'conditions': [
42 ['OS == "android"', { 43 ['OS == "android"', {
43 'dependencies': [ 44 'dependencies': [
44 'autofill_jni_headers', 45 'autofill_jni_headers',
45 ], 46 ],
46 }], 47 }],
47 ], 48 ],
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 '../content/content.gyp:content_common', 106 '../content/content.gyp:content_common',
106 '../google_apis/google_apis.gyp:google_apis', 107 '../google_apis/google_apis.gyp:google_apis',
107 '../ipc/ipc.gyp:ipc', 108 '../ipc/ipc.gyp:ipc',
108 '../skia/skia.gyp:skia', 109 '../skia/skia.gyp:skia',
109 '../sql/sql.gyp:sql', 110 '../sql/sql.gyp:sql',
110 '../third_party/icu/icu.gyp:icui18n', 111 '../third_party/icu/icu.gyp:icui18n',
111 '../third_party/icu/icu.gyp:icuuc', 112 '../third_party/icu/icu.gyp:icuuc',
112 '../third_party/libjingle/libjingle.gyp:libjingle', 113 '../third_party/libjingle/libjingle.gyp:libjingle',
113 '../third_party/libphonenumber/libphonenumber.gyp:libphonenumber', 114 '../third_party/libphonenumber/libphonenumber.gyp:libphonenumber',
114 '../ui/gfx/gfx.gyp:gfx', 115 '../ui/gfx/gfx.gyp:gfx',
116 '../ui/gfx/gfx.gyp:gfx_geometry',
115 '../ui/ui.gyp:ui', 117 '../ui/ui.gyp:ui',
116 '../url/url.gyp:url_lib', 118 '../url/url.gyp:url_lib',
117 '../webkit/webkit_resources.gyp:webkit_resources', 119 '../webkit/webkit_resources.gyp:webkit_resources',
118 120
119 'component_strings.gyp:component_strings', 121 'component_strings.gyp:component_strings',
120 ], 122 ],
121 'sources': [ 123 'sources': [
122 'autofill/core/browser/address.cc', 124 'autofill/core/browser/address.cc',
123 'autofill/core/browser/address.h', 125 'autofill/core/browser/address.h',
124 'autofill/core/browser/address_field.cc', 126 'autofill/core/browser/address_field.cc',
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
293 '../content/content.gyp:content_common', 295 '../content/content.gyp:content_common',
294 '../google_apis/google_apis.gyp:google_apis', 296 '../google_apis/google_apis.gyp:google_apis',
295 '../ipc/ipc.gyp:ipc', 297 '../ipc/ipc.gyp:ipc',
296 '../skia/skia.gyp:skia', 298 '../skia/skia.gyp:skia',
297 '../sql/sql.gyp:sql', 299 '../sql/sql.gyp:sql',
298 '../third_party/icu/icu.gyp:icui18n', 300 '../third_party/icu/icu.gyp:icui18n',
299 '../third_party/icu/icu.gyp:icuuc', 301 '../third_party/icu/icu.gyp:icuuc',
300 '../third_party/libjingle/libjingle.gyp:libjingle', 302 '../third_party/libjingle/libjingle.gyp:libjingle',
301 '../third_party/libphonenumber/libphonenumber.gyp:libphonenumber', 303 '../third_party/libphonenumber/libphonenumber.gyp:libphonenumber',
302 '../ui/gfx/gfx.gyp:gfx', 304 '../ui/gfx/gfx.gyp:gfx',
305 '../ui/gfx/gfx.gyp:gfx_geometry',
303 '../ui/ui.gyp:ui', 306 '../ui/ui.gyp:ui',
304 '../url/url.gyp:url_lib', 307 '../url/url.gyp:url_lib',
305 '../webkit/webkit_resources.gyp:webkit_resources', 308 '../webkit/webkit_resources.gyp:webkit_resources',
306 309
307 'component_strings.gyp:component_strings', 310 'component_strings.gyp:component_strings',
308 ], 311 ],
309 'sources': [ 312 'sources': [
310 'autofill/content/browser/autofill_driver_impl.cc', 313 'autofill/content/browser/autofill_driver_impl.cc',
311 'autofill/content/browser/autofill_driver_impl.h', 314 'autofill/content/browser/autofill_driver_impl.h',
312 'autofill/content/browser/request_autocomplete_manager.cc', 315 'autofill/content/browser/request_autocomplete_manager.cc',
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
400 ], 403 ],
401 'variables': { 404 'variables': {
402 'jni_gen_package': 'autofill', 405 'jni_gen_package': 'autofill',
403 }, 406 },
404 'includes': [ '../build/jni_generator.gypi' ], 407 'includes': [ '../build/jni_generator.gypi' ],
405 }, 408 },
406 ], 409 ],
407 }], 410 }],
408 ], 411 ],
409 } 412 }
OLDNEW
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | components/json_schema.gypi » ('j') | ui/aura/aura.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698