| 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 17 matching lines...) Expand all Loading... |
| 28 | 28 |
| 29 # TODO(crbug.com/679381): Create a layered component to that we can remove the | 29 # TODO(crbug.com/679381): Create a layered component to that we can remove the |
| 30 # iOS check here (iOS strict DEPS checker doesn't like the //content dependency | 30 # iOS check here (iOS strict DEPS checker doesn't like the //content dependency |
| 31 # below). | 31 # below). |
| 32 if (!is_ios) { | 32 if (!is_ios) { |
| 33 static_library("payment_request_impl") { | 33 static_library("payment_request_impl") { |
| 34 sources = [ | 34 sources = [ |
| 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_dialog.h", |
| 38 "payment_request_web_contents_manager.cc", | 39 "payment_request_web_contents_manager.cc", |
| 39 "payment_request_web_contents_manager.h", | 40 "payment_request_web_contents_manager.h", |
| 40 ] | 41 ] |
| 41 | 42 |
| 42 deps = [ | 43 deps = [ |
| 43 ":payment_request", | 44 ":payment_request", |
| 44 ":payment_validation", | 45 ":payment_validation", |
| 45 "//components/autofill/core/browser", | 46 "//components/autofill/core/browser", |
| 46 "//content/public/browser", | 47 "//content/public/browser", |
| 47 "//mojo/public/cpp/bindings", | 48 "//mojo/public/cpp/bindings", |
| (...skipping 30 matching lines...) Expand all Loading... |
| 78 "payments_validators_test.cc", | 79 "payments_validators_test.cc", |
| 79 ] | 80 ] |
| 80 | 81 |
| 81 deps = [ | 82 deps = [ |
| 82 ":payment_validation", | 83 ":payment_validation", |
| 83 "//base", | 84 "//base", |
| 84 "//testing/gtest", | 85 "//testing/gtest", |
| 85 "//third_party/icu:icu", | 86 "//third_party/icu:icu", |
| 86 ] | 87 ] |
| 87 } | 88 } |
| OLD | NEW |