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

Side by Side Diff: components/autofill/core/browser/BUILD.gn

Issue 366933003: Add //components/webdata/common to the GN build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 5 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
« no previous file with comments | « components/autofill/content/browser/BUILD.gn ('k') | components/webdata/common/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 if (is_android) { 5 if (is_android) {
6 import("//build/config/android/config.gni") 6 import("//build/config/android/config.gni")
7 autofill_enable_sync = !is_android_webview_build 7 autofill_enable_sync = !is_android_webview_build
8 } else { 8 } else {
9 autofill_enable_sync = true 9 autofill_enable_sync = true
10 } 10 }
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 deps = [ 133 deps = [
134 ":regexes", 134 ":regexes",
135 "//base", 135 "//base",
136 "//base:i18n", 136 "//base:i18n",
137 "//base:prefs", 137 "//base:prefs",
138 "//components/autofill/core/common", 138 "//components/autofill/core/common",
139 "//components/keyed_service/core", 139 "//components/keyed_service/core",
140 "//components/os_crypt", 140 "//components/os_crypt",
141 "//components/resources", 141 "//components/resources",
142 "//components/strings", 142 "//components/strings",
143 "//components/webdata/common",
143 "//google_apis", 144 "//google_apis",
144 "//skia", 145 "//skia",
145 "//sql", 146 "//sql",
146 "//third_party/icu", 147 "//third_party/icu",
147 "//third_party/libaddressinput", 148 "//third_party/libaddressinput",
148 "//third_party/libphonenumber", 149 "//third_party/libphonenumber",
149 "//ui/base", 150 "//ui/base",
150 "//ui/gfx", 151 "//ui/gfx",
151 "//ui/gfx/geometry", 152 "//ui/gfx/geometry",
152 "//url", 153 "//url",
153 #'../third_party/fips181/fips181.gyp:fips181', TODO(GYP) 154 #'../third_party/fips181/fips181.gyp:fips181', TODO(GYP)
154 # TODO(GYP) also remove libjingle_stub_config below when this is added: 155 # TODO(GYP) also remove libjingle_stub_config below when this is added:
155 #'../third_party/libjingle/libjingle.gyp:libjingle', TODO(GYP) 156 #'../third_party/libjingle/libjingle.gyp:libjingle', TODO(GYP)
156 #'pref_registry', TODO(GYP) 157 #'pref_registry', TODO(GYP)
157 #'webdata_common', TODO(GYP)
158 ] 158 ]
159 159
160 configs += [ "//content:libjingle_stub_config" ] 160 configs += [ "//content:libjingle_stub_config" ]
161 direct_dependent_configs = [ ":autofill_browser_config" ] 161 direct_dependent_configs = [ ":autofill_browser_config" ]
162 162
163 if (autofill_enable_sync) { 163 if (autofill_enable_sync) {
164 deps += [ "//sync" ] 164 deps += [ "//sync" ]
165 } else { 165 } else {
166 sources -= [ 166 sources -= [
167 "webdata/autofill_profile_syncable_service.cc", 167 "webdata/autofill_profile_syncable_service.cc",
(...skipping 25 matching lines...) Expand all
193 "test_personal_data_manager.h", 193 "test_personal_data_manager.h",
194 ] 194 ]
195 195
196 deps = [ 196 deps = [
197 "//components/autofill/core/browser", 197 "//components/autofill/core/browser",
198 "//components/autofill/core/common", 198 "//components/autofill/core/common",
199 "//skia", 199 "//skia",
200 "//testing/gtest", 200 "//testing/gtest",
201 ] 201 ]
202 } 202 }
OLDNEW
« no previous file with comments | « components/autofill/content/browser/BUILD.gn ('k') | components/webdata/common/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698