| 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 ] |
| 11 | |
| 12 public_deps = [ | |
| 13 "//mojo/common:common_custom_types", | |
| 14 ] | |
| 15 } | 11 } |
| 16 | 12 |
| 17 mojom("payment_app") { | 13 mojom("payment_app") { |
| 18 sources = [ | 14 sources = [ |
| 19 "payment_app.mojom", | 15 "payment_app.mojom", |
| 20 ] | 16 ] |
| 21 | 17 |
| 22 public_deps = [ | 18 public_deps = [ |
| 23 ":payment_request", | 19 ":payment_request", |
| 24 "//mojo/common:common_custom_types", | |
| 25 "//url/mojo:url_mojom_gurl", | 20 "//url/mojo:url_mojom_gurl", |
| 26 ] | 21 ] |
| 27 } | 22 } |
| 28 | 23 |
| 29 static_library("payment_request_impl") { | 24 static_library("payment_request_impl") { |
| 30 sources = [ | 25 sources = [ |
| 31 "payment_request.cc", | 26 "payment_request.cc", |
| 32 "payment_request.h", | 27 "payment_request.h", |
| 33 "payment_request_delegate.h", | 28 "payment_request_delegate.h", |
| 34 "payment_request_dialog.h", | 29 "payment_request_dialog.h", |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 deps = [ | 73 deps = [ |
| 79 ":payment_validation", | 74 ":payment_validation", |
| 80 "//base", | 75 "//base", |
| 81 "//base/test:test_support", | 76 "//base/test:test_support", |
| 82 "//components/autofill/core/browser", | 77 "//components/autofill/core/browser", |
| 83 "//testing/gtest", | 78 "//testing/gtest", |
| 84 "//third_party/icu", | 79 "//third_party/icu", |
| 85 "//third_party/libaddressinput:test_support", | 80 "//third_party/libaddressinput:test_support", |
| 86 ] | 81 ] |
| 87 } | 82 } |
| OLD | NEW |