| 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 import("//mojo/public/tools/bindings/mojom.gni") | 5 import("//mojo/public/tools/bindings/mojom.gni") |
| 6 | 6 |
| 7 mojom("payment_request") { | 7 mojom("payment_request") { |
| 8 sources = [ | 8 sources = [ |
| 9 "payment_request.mojom", | 9 "payment_request.mojom", |
| 10 ] | 10 ] |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 "payment_request.cc", | 26 "payment_request.cc", |
| 27 "payment_request.h", | 27 "payment_request.h", |
| 28 "payment_request_delegate.h", | 28 "payment_request_delegate.h", |
| 29 "payment_request_dialog.h", | 29 "payment_request_dialog.h", |
| 30 "payment_request_spec.cc", | 30 "payment_request_spec.cc", |
| 31 "payment_request_spec.h", | 31 "payment_request_spec.h", |
| 32 "payment_request_state.cc", | 32 "payment_request_state.cc", |
| 33 "payment_request_state.h", | 33 "payment_request_state.h", |
| 34 "payment_request_web_contents_manager.cc", | 34 "payment_request_web_contents_manager.cc", |
| 35 "payment_request_web_contents_manager.h", | 35 "payment_request_web_contents_manager.h", |
| 36 "payment_response_helper.cc", |
| 37 "payment_response_helper.h", |
| 36 ] | 38 ] |
| 37 | 39 |
| 38 deps = [ | 40 deps = [ |
| 39 ":payment_request", | 41 ":payment_request", |
| 40 ":payment_validation", | 42 ":payment_validation", |
| 41 "//components/autofill/core/browser", | 43 "//components/autofill/core/browser", |
| 42 "//components/payments/core", | 44 "//components/payments/core", |
| 43 "//content/public/browser", | 45 "//content/public/browser", |
| 44 "//mojo/public/cpp/bindings", | 46 "//mojo/public/cpp/bindings", |
| 45 ] | 47 ] |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 ":payment_validation", | 84 ":payment_validation", |
| 83 "//base", | 85 "//base", |
| 84 "//base/test:test_support", | 86 "//base/test:test_support", |
| 85 "//components/autofill/core/browser", | 87 "//components/autofill/core/browser", |
| 86 "//components/autofill/core/browser:test_support", | 88 "//components/autofill/core/browser:test_support", |
| 87 "//testing/gtest", | 89 "//testing/gtest", |
| 88 "//third_party/icu", | 90 "//third_party/icu", |
| 89 "//third_party/libaddressinput:test_support", | 91 "//third_party/libaddressinput:test_support", |
| 90 ] | 92 ] |
| 91 } | 93 } |
| OLD | NEW |