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

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

Issue 710453002: [Autofill] Componentize AutofillCCInfoBarDelegate. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Return nullptr for CreateInfoBar() in test_autofill_client.cc. Created 6 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 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 25 matching lines...) Expand all
36 sources = [ 36 sources = [
37 "address.cc", 37 "address.cc",
38 "address.h", 38 "address.h",
39 "address_field.cc", 39 "address_field.cc",
40 "address_field.h", 40 "address_field.h",
41 "address_i18n.cc", 41 "address_i18n.cc",
42 "address_i18n.h", 42 "address_i18n.h",
43 "autocomplete_history_manager.cc", 43 "autocomplete_history_manager.cc",
44 "autocomplete_history_manager.h", 44 "autocomplete_history_manager.h",
45 "autofill-inl.h", 45 "autofill-inl.h",
46 "autofill_cc_infobar_delegate.cc",
47 "autofill_cc_infobar_delegate.h",
46 "autofill_country.cc", 48 "autofill_country.cc",
47 "autofill_country.h", 49 "autofill_country.h",
48 "autofill_data_model.cc", 50 "autofill_data_model.cc",
49 "autofill_data_model.h", 51 "autofill_data_model.h",
50 "autofill_download_manager.cc", 52 "autofill_download_manager.cc",
51 "autofill_download_manager.h", 53 "autofill_download_manager.h",
52 "autofill_driver.h", 54 "autofill_driver.h",
53 "autofill_external_delegate.cc", 55 "autofill_external_delegate.cc",
54 "autofill_external_delegate.h", 56 "autofill_external_delegate.h",
55 "autofill_field.cc", 57 "autofill_field.cc",
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 "//sql", 150 "//sql",
149 "//third_party/fips181", 151 "//third_party/fips181",
150 "//third_party/icu", 152 "//third_party/icu",
151 "//third_party/libaddressinput:util", 153 "//third_party/libaddressinput:util",
152 "//third_party/libphonenumber", 154 "//third_party/libphonenumber",
153 "//third_party/libjingle", 155 "//third_party/libjingle",
154 "//ui/base", 156 "//ui/base",
155 "//ui/gfx", 157 "//ui/gfx",
156 "//ui/gfx/geometry", 158 "//ui/gfx/geometry",
157 "//url", 159 "//url",
158 ] 160 ]
Ilya Sherman 2014/12/03 20:00:20 Please add the same deps here as in the gyp file.
Pritam Nikam 2014/12/04 15:37:30 Done.
159 161
160 public_configs = [ ":autofill_browser_config" ] 162 public_configs = [ ":autofill_browser_config" ]
161 163
162 if (autofill_enable_sync) { 164 if (autofill_enable_sync) {
163 deps += [ "//sync" ] 165 deps += [ "//sync" ]
164 } else { 166 } else {
165 sources -= [ 167 sources -= [
166 "webdata/autofill_profile_syncable_service.cc", 168 "webdata/autofill_profile_syncable_service.cc",
167 "webdata/autofill_profile_syncable_service.h", 169 "webdata/autofill_profile_syncable_service.h",
168 ] 170 ]
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
258 "//sync", 260 "//sync",
259 "//sync:test_support_sync_api", 261 "//sync:test_support_sync_api",
260 "//testing/gmock", 262 "//testing/gmock",
261 "//testing/gtest", 263 "//testing/gtest",
262 "//third_party/libphonenumber", 264 "//third_party/libphonenumber",
263 "//third_party/libjingle", 265 "//third_party/libjingle",
264 "//ui/base", 266 "//ui/base",
265 "//url", 267 "//url",
266 ] 268 ]
267 } 269 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698