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

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

Issue 2839023003: WebView autofill implementation (Closed)
Patch Set: Created 3 years, 8 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
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 static_library("browser") { 7 static_library("browser") {
8 sources = [ 8 sources = [
9 "address.cc", 9 "address.cc",
10 "address.h", 10 "address.h",
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 "autofill_manager.cc", 43 "autofill_manager.cc",
44 "autofill_manager.h", 44 "autofill_manager.h",
45 "autofill_manager_test_delegate.h", 45 "autofill_manager_test_delegate.h",
46 "autofill_metrics.cc", 46 "autofill_metrics.cc",
47 "autofill_metrics.h", 47 "autofill_metrics.h",
48 "autofill_popup_delegate.h", 48 "autofill_popup_delegate.h",
49 "autofill_profile.cc", 49 "autofill_profile.cc",
50 "autofill_profile.h", 50 "autofill_profile.h",
51 "autofill_profile_comparator.cc", 51 "autofill_profile_comparator.cc",
52 "autofill_profile_comparator.h", 52 "autofill_profile_comparator.h",
53 "autofill_provider.cc",
54 "autofill_provider.h",
55 "autofill_provider_android.cc",
56 "autofill_provider_android.h",
53 "autofill_regex_constants.cc", 57 "autofill_regex_constants.cc",
54 "autofill_regex_constants.h", 58 "autofill_regex_constants.h",
55 "autofill_scanner.cc", 59 "autofill_scanner.cc",
56 "autofill_scanner.h", 60 "autofill_scanner.h",
57 "autofill_sync_constants.cc", 61 "autofill_sync_constants.cc",
58 "autofill_sync_constants.h", 62 "autofill_sync_constants.h",
59 "autofill_type.cc", 63 "autofill_type.cc",
60 "autofill_type.h", 64 "autofill_type.h",
61 "autofill_wallet_data_type_controller.cc", 65 "autofill_wallet_data_type_controller.cc",
62 "autofill_wallet_data_type_controller.h", 66 "autofill_wallet_data_type_controller.h",
(...skipping 12 matching lines...) Expand all
75 "credit_card_field.cc", 79 "credit_card_field.cc",
76 "credit_card_field.h", 80 "credit_card_field.h",
77 "detail_input.cc", 81 "detail_input.cc",
78 "detail_input.h", 82 "detail_input.h",
79 "dialog_section.h", 83 "dialog_section.h",
80 "email_field.cc", 84 "email_field.cc",
81 "email_field.h", 85 "email_field.h",
82 "field_candidates.cc", 86 "field_candidates.cc",
83 "field_candidates.h", 87 "field_candidates.h",
84 "field_types.h", 88 "field_types.h",
89 "form_data_android.cc",
90 "form_data_android.h",
85 "form_field.cc", 91 "form_field.cc",
86 "form_field.h", 92 "form_field.h",
93 "form_field_data_android.cc",
94 "form_field_data_android.h",
87 "form_group.cc", 95 "form_group.cc",
88 "form_group.h", 96 "form_group.h",
89 "form_structure.cc", 97 "form_structure.cc",
90 "form_structure.h", 98 "form_structure.h",
91 "legal_message_line.cc", 99 "legal_message_line.cc",
92 "legal_message_line.h", 100 "legal_message_line.h",
93 "name_field.cc", 101 "name_field.cc",
94 "name_field.h", 102 "name_field.h",
95 "password_generator.cc", 103 "password_generator.cc",
96 "password_generator.h", 104 "password_generator.h",
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 "autofill_assistant.h", 185 "autofill_assistant.h",
178 "autofill_credit_card_filling_infobar_delegate_mobile.cc", 186 "autofill_credit_card_filling_infobar_delegate_mobile.cc",
179 "autofill_credit_card_filling_infobar_delegate_mobile.h", 187 "autofill_credit_card_filling_infobar_delegate_mobile.h",
180 "autofill_save_card_infobar_delegate_mobile.cc", 188 "autofill_save_card_infobar_delegate_mobile.cc",
181 "autofill_save_card_infobar_delegate_mobile.h", 189 "autofill_save_card_infobar_delegate_mobile.h",
182 "autofill_save_card_infobar_mobile.h", 190 "autofill_save_card_infobar_mobile.h",
183 ] 191 ]
184 } 192 }
185 193
186 if (!is_android) { 194 if (!is_android) {
187 sources += [ 195 sources += [ "ui/save_card_bubble_controller.h" ]
188 "ui/save_card_bubble_controller.h",
189 ]
190 } 196 }
191 197
192 configs += [ "//build/config:precompiled_headers" ] 198 configs += [ "//build/config:precompiled_headers" ]
193 199
194 public_deps = [ 200 public_deps = [
195 "//components/autofill/core/browser/proto", 201 "//components/autofill/core/browser/proto",
196 "//components/autofill/core/common", 202 "//components/autofill/core/common",
197 "//components/resources", 203 "//components/resources",
198 "//skia", 204 "//skia",
199 ] 205 ]
(...skipping 24 matching lines...) Expand all
224 "//third_party/libaddressinput", 230 "//third_party/libaddressinput",
225 "//third_party/libphonenumber", 231 "//third_party/libphonenumber",
226 "//third_party/re2", 232 "//third_party/re2",
227 "//ui/base", 233 "//ui/base",
228 "//ui/gfx", 234 "//ui/gfx",
229 "//ui/gfx/geometry", 235 "//ui/gfx/geometry",
230 "//ui/gfx/range", 236 "//ui/gfx/range",
231 "//url", 237 "//url",
232 ] 238 ]
233 239
240 if (is_android) {
241 deps += [ "//components/autofill/android:jni_headers" ]
242 }
243
234 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 244 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
235 245
236 if (is_mac) { 246 if (is_mac) {
237 libs = [ "AddressBook.framework" ] 247 libs = [ "AddressBook.framework" ]
238 } 248 }
239 } 249 }
240 250
241 static_library("test_support") { 251 static_library("test_support") {
242 testonly = true 252 testonly = true
243 sources = [ 253 sources = [
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
402 "//net:test_support", 412 "//net:test_support",
403 "//sql", 413 "//sql",
404 "//testing/gmock", 414 "//testing/gmock",
405 "//testing/gtest", 415 "//testing/gtest",
406 "//third_party/libaddressinput:util", 416 "//third_party/libaddressinput:util",
407 "//third_party/libphonenumber", 417 "//third_party/libphonenumber",
408 "//ui/base", 418 "//ui/base",
409 "//url", 419 "//url",
410 ] 420 ]
411 } 421 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698