| 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 static_library("content") { | 7 static_library("content") { |
| 8 sources = [ | 8 sources = [ |
| 9 "payment_request.cc", | 9 "payment_request.cc", |
| 10 "payment_request.h", | 10 "payment_request.h", |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 mojom("mojom") { | 32 mojom("mojom") { |
| 33 sources = [ | 33 sources = [ |
| 34 "payment_request.mojom", | 34 "payment_request.mojom", |
| 35 ] | 35 ] |
| 36 } | 36 } |
| 37 | 37 |
| 38 mojom("mojom_parser") { | 38 mojom("mojom_parser") { |
| 39 sources = [ | 39 sources = [ |
| 40 "payment_manifest_parser.mojom", | 40 "payment_manifest_parser.mojom", |
| 41 ] | 41 ] |
| 42 |
| 43 public_deps = [ |
| 44 "//url/mojo:url_mojom_gurl", |
| 45 ] |
| 42 } | 46 } |
| 43 | 47 |
| 44 mojom("mojom_payment_app") { | 48 mojom("mojom_payment_app") { |
| 45 sources = [ | 49 sources = [ |
| 46 "payment_app.mojom", | 50 "payment_app.mojom", |
| 47 ] | 51 ] |
| 48 | 52 |
| 49 public_deps = [ | 53 public_deps = [ |
| 50 ":mojom", | 54 ":mojom", |
| 51 "//mojo/common:common_custom_types", | 55 "//mojo/common:common_custom_types", |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 "//components/autofill/core/browser", | 109 "//components/autofill/core/browser", |
| 106 "//components/autofill/core/browser:test_support", | 110 "//components/autofill/core/browser:test_support", |
| 107 "//components/payments/core", | 111 "//components/payments/core", |
| 108 "//content/test:test_support", | 112 "//content/test:test_support", |
| 109 "//net:test_support", | 113 "//net:test_support", |
| 110 "//testing/gtest", | 114 "//testing/gtest", |
| 111 "//third_party/icu", | 115 "//third_party/icu", |
| 112 "//third_party/libaddressinput:test_support", | 116 "//third_party/libaddressinput:test_support", |
| 113 ] | 117 ] |
| 114 } | 118 } |
| OLD | NEW |