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

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

Issue 2849523003: Add billing address as a mandatory field of Payments credit cards. (Closed)
Patch Set: Components Unittests fix 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",
11 "address_combobox_model.cc",
12 "address_combobox_model.h",
11 "address_field.cc", 13 "address_field.cc",
12 "address_field.h", 14 "address_field.h",
13 "address_i18n.cc", 15 "address_i18n.cc",
14 "address_i18n.h", 16 "address_i18n.h",
15 "address_rewriter.cc", 17 "address_rewriter.cc",
16 "address_rewriter.h", 18 "address_rewriter.h",
17 "address_rewriter_rules.cc", 19 "address_rewriter_rules.cc",
18 "autocomplete_history_manager.cc", 20 "autocomplete_history_manager.cc",
19 "autocomplete_history_manager.h", 21 "autocomplete_history_manager.h",
20 "autofill-inl.h", 22 "autofill-inl.h",
(...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after
308 ] 310 ]
309 outputs = [ 311 outputs = [
310 "{{bundle_resources_dir}}/" + 312 "{{bundle_resources_dir}}/" +
311 "{{source_root_relative_dir}}/{{source_file_part}}", 313 "{{source_root_relative_dir}}/{{source_file_part}}",
312 ] 314 ]
313 } 315 }
314 316
315 source_set("unit_tests") { 317 source_set("unit_tests") {
316 testonly = true 318 testonly = true
317 sources = [ 319 sources = [
320 "address_combobox_model_unittest.cc",
318 "address_field_unittest.cc", 321 "address_field_unittest.cc",
319 "address_i18n_unittest.cc", 322 "address_i18n_unittest.cc",
320 "address_rewriter_unittest.cc", 323 "address_rewriter_unittest.cc",
321 "address_unittest.cc", 324 "address_unittest.cc",
322 "autocomplete_history_manager_unittest.cc", 325 "autocomplete_history_manager_unittest.cc",
323 "autofill_country_unittest.cc", 326 "autofill_country_unittest.cc",
324 "autofill_data_model_unittest.cc", 327 "autofill_data_model_unittest.cc",
325 "autofill_data_util_unittest.cc", 328 "autofill_data_util_unittest.cc",
326 "autofill_download_manager_unittest.cc", 329 "autofill_download_manager_unittest.cc",
327 "autofill_driver_factory_unittest.cc", 330 "autofill_driver_factory_unittest.cc",
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
399 "//net:test_support", 402 "//net:test_support",
400 "//sql", 403 "//sql",
401 "//testing/gmock", 404 "//testing/gmock",
402 "//testing/gtest", 405 "//testing/gtest",
403 "//third_party/libaddressinput:util", 406 "//third_party/libaddressinput:util",
404 "//third_party/libphonenumber", 407 "//third_party/libphonenumber",
405 "//ui/base", 408 "//ui/base",
406 "//url", 409 "//url",
407 ] 410 ]
408 } 411 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698