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

Side by Side Diff: components/payments/core/BUILD.gn

Issue 2713033004: Layered component for web payments (Closed)
Patch Set: Rebase Created 3 years, 9 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
« no previous file with comments | « components/payments/content/payments_validators_test.cc ('k') | components/payments/core/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 static_library("core") {
6 sources = [
7 "address_normalizer.cc",
8 "address_normalizer.h",
9 "currency_formatter.cc",
10 "currency_formatter.h",
11 ]
12
13 deps = [
14 "//base",
15 "//components/autofill/core/browser",
16 ]
17
18 public_deps = [
19 "//third_party/icu",
20 "//third_party/libaddressinput",
21 ]
22 }
23
24 source_set("unit_tests") {
25 testonly = true
26 sources = [
27 "address_normalizer_unittest.cc",
28 "currency_formatter_unittest.cc",
29 ]
30
31 deps = [
32 ":core",
33 "//base",
34 "//base/test:test_support",
35 "//components/autofill/core/browser",
36 "//testing/gtest",
37 "//third_party/libaddressinput:test_support",
38 ]
39 }
OLDNEW
« no previous file with comments | « components/payments/content/payments_validators_test.cc ('k') | components/payments/core/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698