| 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 24 matching lines...) Expand all Loading... |
| 35 "payment_request.cc", | 35 "payment_request.cc", |
| 36 "payment_request.h", | 36 "payment_request.h", |
| 37 "payment_request_delegate.h", | 37 "payment_request_delegate.h", |
| 38 "payment_request_web_contents_manager.cc", | 38 "payment_request_web_contents_manager.cc", |
| 39 "payment_request_web_contents_manager.h", | 39 "payment_request_web_contents_manager.h", |
| 40 ] | 40 ] |
| 41 | 41 |
| 42 deps = [ | 42 deps = [ |
| 43 ":payment_request", | 43 ":payment_request", |
| 44 ":payment_validation", | 44 ":payment_validation", |
| 45 "//components/autofill/core/browser", |
| 45 "//content/public/browser", | 46 "//content/public/browser", |
| 46 "//mojo/public/cpp/bindings", | 47 "//mojo/public/cpp/bindings", |
| 47 ] | 48 ] |
| 48 } | 49 } |
| 49 } | 50 } |
| 50 | 51 |
| 51 static_library("payment_validation") { | 52 static_library("payment_validation") { |
| 52 sources = [ | 53 sources = [ |
| 53 "currency_formatter.cc", | 54 "currency_formatter.cc", |
| 54 "currency_formatter.h", | 55 "currency_formatter.h", |
| (...skipping 22 matching lines...) Expand all Loading... |
| 77 "payments_validators_test.cc", | 78 "payments_validators_test.cc", |
| 78 ] | 79 ] |
| 79 | 80 |
| 80 deps = [ | 81 deps = [ |
| 81 ":payment_validation", | 82 ":payment_validation", |
| 82 "//base", | 83 "//base", |
| 83 "//testing/gtest", | 84 "//testing/gtest", |
| 84 "//third_party/icu:icu", | 85 "//third_party/icu:icu", |
| 85 ] | 86 ] |
| 86 } | 87 } |
| OLD | NEW |