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

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: Rebased. 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 28 matching lines...) Expand all
39 sources = [ 39 sources = [
40 "address.cc", 40 "address.cc",
41 "address.h", 41 "address.h",
42 "address_field.cc", 42 "address_field.cc",
43 "address_field.h", 43 "address_field.h",
44 "address_i18n.cc", 44 "address_i18n.cc",
45 "address_i18n.h", 45 "address_i18n.h",
46 "autocomplete_history_manager.cc", 46 "autocomplete_history_manager.cc",
47 "autocomplete_history_manager.h", 47 "autocomplete_history_manager.h",
48 "autofill-inl.h", 48 "autofill-inl.h",
49 "autofill_cc_infobar_delegate.cc",
50 "autofill_cc_infobar_delegate.h",
49 "autofill_country.cc", 51 "autofill_country.cc",
50 "autofill_country.h", 52 "autofill_country.h",
51 "autofill_data_model.cc", 53 "autofill_data_model.cc",
52 "autofill_data_model.h", 54 "autofill_data_model.h",
53 "autofill_download_manager.cc", 55 "autofill_download_manager.cc",
54 "autofill_download_manager.h", 56 "autofill_download_manager.h",
55 "autofill_driver.h", 57 "autofill_driver.h",
56 "autofill_external_delegate.cc", 58 "autofill_external_delegate.cc",
57 "autofill_external_delegate.h", 59 "autofill_external_delegate.h",
58 "autofill_field.cc", 60 "autofill_field.cc",
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 134
133 # Compile the generated regex file. 135 # Compile the generated regex file.
134 sources += get_target_outputs(":regexes") 136 sources += get_target_outputs(":regexes")
135 137
136 deps = [ 138 deps = [
137 ":regexes", 139 ":regexes",
138 "//base", 140 "//base",
139 "//base:i18n", 141 "//base:i18n",
140 "//base:prefs", 142 "//base:prefs",
141 "//components/autofill/core/common", 143 "//components/autofill/core/common",
144 "//components/infobars/core",
142 "//components/keyed_service/core", 145 "//components/keyed_service/core",
143 "//components/os_crypt", 146 "//components/os_crypt",
144 "//components/pref_registry", 147 "//components/pref_registry",
145 "//components/resources", 148 "//components/resources",
146 "//components/strings", 149 "//components/strings",
147 "//components/webdata/common", 150 "//components/webdata/common",
148 "//google_apis", 151 "//google_apis",
149 "//net", 152 "//net",
150 "//skia", 153 "//skia",
151 "//sql", 154 "//sql",
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
261 "//sync", 264 "//sync",
262 "//sync:test_support_sync_api", 265 "//sync:test_support_sync_api",
263 "//testing/gmock", 266 "//testing/gmock",
264 "//testing/gtest", 267 "//testing/gtest",
265 "//third_party/libphonenumber", 268 "//third_party/libphonenumber",
266 "//third_party/libjingle", 269 "//third_party/libjingle",
267 "//ui/base", 270 "//ui/base",
268 "//url", 271 "//url",
269 ] 272 ]
270 } 273 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698