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

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

Issue 1806853008: [GN] Fix missing public dependency. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@gn-ide
Patch Set: Rebase on origin/master Created 4 years, 9 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
« no previous file with comments | « no previous file | no next file » | 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 import("//build/config/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 6
7 # This config sets the define that controls which Wallet service to contact 7 # This config sets the define that controls which Wallet service to contact
8 # for features using Wallet integration. Unofficial builds won't have the 8 # for features using Wallet integration. Unofficial builds won't have the
9 # proper API keys so it uses the "sandbox" test servers instead. 9 # proper API keys so it uses the "sandbox" test servers instead.
10 config("wallet_service") { 10 config("wallet_service") {
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
160 "autofill_save_card_infobar_delegate_mobile.h", 160 "autofill_save_card_infobar_delegate_mobile.h",
161 "autofill_save_card_infobar_mobile.h", 161 "autofill_save_card_infobar_mobile.h",
162 ] 162 ]
163 } 163 }
164 164
165 configs += [ "//build/config:precompiled_headers" ] 165 configs += [ "//build/config:precompiled_headers" ]
166 166
167 deps = [ 167 deps = [
168 "//base", 168 "//base",
169 "//base:i18n", 169 "//base:i18n",
170 "//components/autofill/core/browser/proto",
171 "//components/autofill/core/common", 170 "//components/autofill/core/common",
172 "//components/data_use_measurement/core", 171 "//components/data_use_measurement/core",
173 "//components/infobars/core", 172 "//components/infobars/core",
174 "//components/keyed_service/core", 173 "//components/keyed_service/core",
175 "//components/os_crypt", 174 "//components/os_crypt",
176 "//components/pref_registry", 175 "//components/pref_registry",
177 "//components/prefs", 176 "//components/prefs",
178 "//components/rappor", 177 "//components/rappor",
179 "//components/resources", 178 "//components/resources",
180 "//components/signin/core/browser", 179 "//components/signin/core/browser",
(...skipping 11 matching lines...) Expand all
192 "//third_party/icu", 191 "//third_party/icu",
193 "//third_party/libaddressinput:util", 192 "//third_party/libaddressinput:util",
194 "//third_party/libphonenumber", 193 "//third_party/libphonenumber",
195 "//third_party/re2", 194 "//third_party/re2",
196 "//ui/base", 195 "//ui/base",
197 "//ui/gfx", 196 "//ui/gfx",
198 "//ui/gfx/geometry", 197 "//ui/gfx/geometry",
199 "//url", 198 "//url",
200 ] 199 ]
201 200
201 public_deps = [
202 "//components/autofill/core/browser/proto",
203 ]
204
202 configs += [ 205 configs += [
203 ":wallet_service", 206 ":wallet_service",
204 "//build/config/compiler:no_size_t_to_int_warning", 207 "//build/config/compiler:no_size_t_to_int_warning",
205 ] 208 ]
206 209
207 if (is_mac) { 210 if (is_mac) {
208 libs = [ "AddressBook.framework" ] 211 libs = [ "AddressBook.framework" ]
209 } 212 }
210 } 213 }
211 214
(...skipping 16 matching lines...) Expand all
228 ] 231 ]
229 232
230 public_deps = [ 233 public_deps = [
231 ":browser", 234 ":browser",
232 ] 235 ]
233 236
234 deps = [ 237 deps = [
235 "//base", 238 "//base",
236 "//base/test:test_support", 239 "//base/test:test_support",
237 "//components/autofill/core/browser", 240 "//components/autofill/core/browser",
238 "//components/autofill/core/browser/proto",
239 "//components/autofill/core/common", 241 "//components/autofill/core/common",
240 "//components/os_crypt", 242 "//components/os_crypt",
241 "//components/pref_registry", 243 "//components/pref_registry",
242 "//components/prefs:test_support", 244 "//components/prefs:test_support",
243 "//components/rappor", 245 "//components/rappor",
244 "//components/rappor:test_support", 246 "//components/rappor:test_support",
245 "//components/signin/core/browser", 247 "//components/signin/core/browser",
246 "//components/signin/core/common", 248 "//components/signin/core/common",
247 "//google_apis:test_support", 249 "//google_apis:test_support",
248 "//skia", 250 "//skia",
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
320 "//sync", 322 "//sync",
321 "//sync:test_support_sync_api", 323 "//sync:test_support_sync_api",
322 "//testing/gmock", 324 "//testing/gmock",
323 "//testing/gtest", 325 "//testing/gtest",
324 "//third_party/libaddressinput:util", 326 "//third_party/libaddressinput:util",
325 "//third_party/libphonenumber", 327 "//third_party/libphonenumber",
326 "//ui/base", 328 "//ui/base",
327 "//url", 329 "//url",
328 ] 330 ]
329 } 331 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698