Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright 2017 The Chromium Authors. All rights reserved. | 1 # Copyright 2017 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 static_library("core") { | 5 static_library("core") { |
| 6 sources = [ | 6 sources = [ |
| 7 "address_normalizer.cc", | 7 "address_normalizer.cc", |
| 8 "address_normalizer.h", | 8 "address_normalizer.h", |
| 9 "autofill_payment_instrument.cc", | 9 "autofill_payment_instrument.cc", |
| 10 "autofill_payment_instrument.h", | 10 "autofill_payment_instrument.h", |
| (...skipping 16 matching lines...) Expand all Loading... | |
| 27 "profile_util.cc", | 27 "profile_util.cc", |
| 28 "profile_util.h", | 28 "profile_util.h", |
| 29 "strings_util.cc", | 29 "strings_util.cc", |
| 30 "strings_util.h", | 30 "strings_util.h", |
| 31 ] | 31 ] |
| 32 | 32 |
| 33 deps = [ | 33 deps = [ |
| 34 "//base", | 34 "//base", |
| 35 "//components/autofill/core/browser", | 35 "//components/autofill/core/browser", |
| 36 "//components/strings:components_strings_grit", | 36 "//components/strings:components_strings_grit", |
| 37 "//components/ukm", | |
| 37 "//ui/base", | 38 "//ui/base", |
| 39 "//url", | |
| 38 ] | 40 ] |
| 39 | 41 |
| 40 public_deps = [ | 42 public_deps = [ |
| 41 "//third_party/icu", | 43 "//third_party/icu", |
| 42 "//third_party/libaddressinput", | 44 "//third_party/libaddressinput", |
| 43 ] | 45 ] |
| 44 } | 46 } |
| 45 | 47 |
| 46 source_set("unit_tests") { | 48 source_set("unit_tests") { |
| 47 testonly = true | 49 testonly = true |
| 48 sources = [ | 50 sources = [ |
| 49 "address_normalizer_unittest.cc", | 51 "address_normalizer_unittest.cc", |
| 50 "basic_card_response_unittest.cc", | 52 "basic_card_response_unittest.cc", |
| 51 "currency_formatter_unittest.cc", | 53 "currency_formatter_unittest.cc", |
| 52 "journey_logger_unittest.cc", | 54 "journey_logger_unittest.cc", |
| 53 "payment_address_unittest.cc", | 55 "payment_address_unittest.cc", |
| 54 "payment_method_data_unittest.cc", | 56 "payment_method_data_unittest.cc", |
| 55 "payment_request_data_util_unittest.cc", | 57 "payment_request_data_util_unittest.cc", |
| 56 "profile_util_unittest.cc", | 58 "profile_util_unittest.cc", |
| 57 ] | 59 ] |
| 58 | 60 |
| 59 deps = [ | 61 deps = [ |
| 60 ":core", | 62 ":core", |
| 61 "//base", | 63 "//base", |
| 62 "//base/test:test_support", | 64 "//base/test:test_support", |
| 63 "//components/autofill/core/browser", | 65 "//components/autofill/core/browser", |
| 64 "//components/autofill/core/browser:test_support", | 66 "//components/autofill/core/browser:test_support", |
| 67 "//components/metrics/proto", | |
| 68 "//components/ukm", | |
| 69 "//components/ukm:test_support", | |
| 70 "//skia", | |
|
Mathieu
2017/04/10 01:03:01
??
sebsg
2017/04/10 15:30:28
Done.
| |
| 65 "//testing/gmock", | 71 "//testing/gmock", |
| 66 "//testing/gtest", | 72 "//testing/gtest", |
| 67 "//third_party/libaddressinput:test_support", | 73 "//third_party/libaddressinput:test_support", |
| 68 ] | 74 ] |
| 69 } | 75 } |
| OLD | NEW |