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

Side by Side Diff: components/autofill.gypi

Issue 15421002: Roll DEPS for googleurl. Second try. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 7 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 # 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 26 matching lines...) Expand all
37 }, 37 },
38 ], 38 ],
39 'conditions': [ 39 'conditions': [
40 ['OS != "ios"', { 40 ['OS != "ios"', {
41 'targets': [ 41 'targets': [
42 { 42 {
43 'target_name': 'autofill_common', 43 'target_name': 'autofill_common',
44 'type': 'static_library', 44 'type': 'static_library',
45 'dependencies': [ 45 'dependencies': [
46 '../base/base.gyp:base', 46 '../base/base.gyp:base',
47 '../build/temp_gyp/googleurl.gyp:googleurl',
48 '../content/content.gyp:content_common', 47 '../content/content.gyp:content_common',
49 '../ipc/ipc.gyp:ipc', 48 '../ipc/ipc.gyp:ipc',
50 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', 49 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit',
51 '../ui/ui.gyp:ui', 50 '../ui/ui.gyp:ui',
51 '../url/url.gyp:url',
52 ], 52 ],
53 'conditions': [ 53 'conditions': [
54 ['OS == "android"', { 54 ['OS == "android"', {
55 'dependencies': [ 55 'dependencies': [
56 'autofill_jni_headers', 56 'autofill_jni_headers',
57 ], 57 ],
58 }], 58 }],
59 ], 59 ],
60 'include_dirs': [ 60 'include_dirs': [
61 '..', 61 '..',
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 'dependencies': [ 105 'dependencies': [
106 'autofill_common', 106 'autofill_common',
107 'autofill_regexes', 107 'autofill_regexes',
108 'autofill_risk_proto', 108 'autofill_risk_proto',
109 'encryptor', 109 'encryptor',
110 'user_prefs', 110 'user_prefs',
111 'webdata_common', 111 'webdata_common',
112 '../base/base.gyp:base', 112 '../base/base.gyp:base',
113 '../base/base.gyp:base_i18n', 113 '../base/base.gyp:base_i18n',
114 '../base/base.gyp:base_prefs', 114 '../base/base.gyp:base_prefs',
115 '../build/temp_gyp/googleurl.gyp:googleurl',
116 '../content/content.gyp:content_browser', 115 '../content/content.gyp:content_browser',
117 '../content/content.gyp:content_common', 116 '../content/content.gyp:content_common',
118 '../google_apis/google_apis.gyp:google_apis', 117 '../google_apis/google_apis.gyp:google_apis',
119 '../ipc/ipc.gyp:ipc', 118 '../ipc/ipc.gyp:ipc',
120 '../skia/skia.gyp:skia', 119 '../skia/skia.gyp:skia',
121 '../sql/sql.gyp:sql', 120 '../sql/sql.gyp:sql',
122 '../third_party/icu/icu.gyp:icui18n', 121 '../third_party/icu/icu.gyp:icui18n',
123 '../third_party/icu/icu.gyp:icuuc', 122 '../third_party/icu/icu.gyp:icuuc',
124 '../third_party/libjingle/libjingle.gyp:libjingle', 123 '../third_party/libjingle/libjingle.gyp:libjingle',
125 '../third_party/libphonenumber/libphonenumber.gyp:libphonenumber', 124 '../third_party/libphonenumber/libphonenumber.gyp:libphonenumber',
126 '../ui/ui.gyp:ui', 125 '../ui/ui.gyp:ui',
126 '../url/url.gyp:url',
127 '../webkit/support/webkit_support.gyp:webkit_resources', 127 '../webkit/support/webkit_support.gyp:webkit_resources',
128 128
129 'component_resources.gyp:component_resources', 129 'component_resources.gyp:component_resources',
130 ], 130 ],
131 'sources': [ 131 'sources': [
132 'autofill/browser/address.cc', 132 'autofill/browser/address.cc',
133 'autofill/browser/address.h', 133 'autofill/browser/address.h',
134 'autofill/browser/address_field.cc', 134 'autofill/browser/address_field.cc',
135 'autofill/browser/address_field.h', 135 'autofill/browser/address_field.h',
136 'autofill/browser/autocheckout/whitelist_manager.cc', 136 'autofill/browser/autocheckout/whitelist_manager.cc',
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
317 ], 317 ],
318 'variables': { 318 'variables': {
319 'jni_gen_package': 'autofill', 319 'jni_gen_package': 'autofill',
320 }, 320 },
321 'includes': [ '../build/jni_generator.gypi' ], 321 'includes': [ '../build/jni_generator.gypi' ],
322 }, 322 },
323 ], 323 ],
324 }], 324 }],
325 ], 325 ],
326 } 326 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698