OLD | NEW |
1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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("content") { | 5 static_library("content") { |
6 sources = [ | 6 sources = [ |
7 "payment_request.cc", | 7 "payment_request.cc", |
8 "payment_request.h", | 8 "payment_request.h", |
9 "payment_request_dialog.h", | 9 "payment_request_dialog.h", |
10 "payment_request_spec.cc", | 10 "payment_request_spec.cc", |
(...skipping 12 matching lines...) Expand all Loading... |
23 "//components/payments/core", | 23 "//components/payments/core", |
24 "//components/payments/mojom", | 24 "//components/payments/mojom", |
25 "//content/public/browser", | 25 "//content/public/browser", |
26 "//mojo/public/cpp/bindings", | 26 "//mojo/public/cpp/bindings", |
27 "//third_party/libphonenumber", | 27 "//third_party/libphonenumber", |
28 ] | 28 ] |
29 } | 29 } |
30 | 30 |
31 static_library("utils") { | 31 static_library("utils") { |
32 sources = [ | 32 sources = [ |
| 33 "origin_security_checker.cc", |
| 34 "origin_security_checker.h", |
33 "payment_details_validation.cc", | 35 "payment_details_validation.cc", |
34 "payment_details_validation.h", | 36 "payment_details_validation.h", |
35 "payment_manifest_downloader.cc", | 37 "payment_manifest_downloader.cc", |
36 "payment_manifest_downloader.h", | 38 "payment_manifest_downloader.h", |
37 "payment_manifest_parser_host.cc", | 39 "payment_manifest_parser_host.cc", |
38 "payment_manifest_parser_host.h", | 40 "payment_manifest_parser_host.h", |
39 "payments_validators.cc", | 41 "payments_validators.cc", |
40 "payments_validators.h", | 42 "payments_validators.h", |
41 ] | 43 ] |
42 | 44 |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
81 "//components/autofill/core/browser:test_support", | 83 "//components/autofill/core/browser:test_support", |
82 "//components/payments/core", | 84 "//components/payments/core", |
83 "//components/payments/mojom", | 85 "//components/payments/mojom", |
84 "//content/test:test_support", | 86 "//content/test:test_support", |
85 "//net:test_support", | 87 "//net:test_support", |
86 "//testing/gtest", | 88 "//testing/gtest", |
87 "//third_party/icu", | 89 "//third_party/icu", |
88 "//third_party/libaddressinput:test_support", | 90 "//third_party/libaddressinput:test_support", |
89 ] | 91 ] |
90 } | 92 } |
OLD | NEW |