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", |
11 "payment_request_spec.h", | 11 "payment_request_spec.h", |
12 "payment_request_state.cc", | 12 "payment_request_state.cc", |
13 "payment_request_state.h", | 13 "payment_request_state.h", |
14 "payment_request_web_contents_manager.cc", | 14 "payment_request_web_contents_manager.cc", |
15 "payment_request_web_contents_manager.h", | 15 "payment_request_web_contents_manager.h", |
16 "payment_response_helper.cc", | 16 "payment_response_helper.cc", |
17 "payment_response_helper.h", | 17 "payment_response_helper.h", |
18 ] | 18 ] |
19 | 19 |
20 deps = [ | 20 deps = [ |
21 ":utils", | 21 ":utils", |
22 "//components/autofill/core/browser", | 22 "//components/autofill/core/browser", |
23 "//components/payments/core", | 23 "//components/payments/core", |
24 "//components/payments/mojom", | 24 "//components/payments/mojom", |
| 25 "//components/strings:components_strings_grit", |
25 "//content/public/browser", | 26 "//content/public/browser", |
26 "//mojo/public/cpp/bindings", | 27 "//mojo/public/cpp/bindings", |
27 "//third_party/libphonenumber", | 28 "//third_party/libphonenumber", |
28 ] | 29 ] |
29 } | 30 } |
30 | 31 |
31 static_library("utils") { | 32 static_library("utils") { |
32 sources = [ | 33 sources = [ |
33 "origin_security_checker.cc", | 34 "origin_security_checker.cc", |
34 "origin_security_checker.h", | 35 "origin_security_checker.h", |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 "//components/payments/core", | 85 "//components/payments/core", |
85 "//components/payments/core:test_support", | 86 "//components/payments/core:test_support", |
86 "//components/payments/mojom", | 87 "//components/payments/mojom", |
87 "//content/test:test_support", | 88 "//content/test:test_support", |
88 "//net:test_support", | 89 "//net:test_support", |
89 "//testing/gtest", | 90 "//testing/gtest", |
90 "//third_party/icu", | 91 "//third_party/icu", |
91 "//third_party/libaddressinput:test_support", | 92 "//third_party/libaddressinput:test_support", |
92 ] | 93 ] |
93 } | 94 } |
OLD | NEW |