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

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

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

Powered by Google App Engine
This is Rietveld 408576698