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