| 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 ] | 42 ] |
| 43 } | 43 } |
| 44 | 44 |
| 45 mojom("mojom_payment_app") { | 45 mojom("mojom_payment_app") { |
| 46 sources = [ | 46 sources = [ |
| 47 "payment_app.mojom", | 47 "payment_app.mojom", |
| 48 ] | 48 ] |
| 49 | 49 |
| 50 public_deps = [ | 50 public_deps = [ |
| 51 ":mojom", | 51 ":mojom", |
| 52 "//mojo/common:common_custom_types", |
| 52 "//url/mojo:url_mojom_gurl", | 53 "//url/mojo:url_mojom_gurl", |
| 53 ] | 54 ] |
| 54 } | 55 } |
| 55 | 56 |
| 56 static_library("utils") { | 57 static_library("utils") { |
| 57 sources = [ | 58 sources = [ |
| 58 "payment_details_validation.cc", | 59 "payment_details_validation.cc", |
| 59 "payment_details_validation.h", | 60 "payment_details_validation.h", |
| 60 "payment_manifest_downloader.cc", | 61 "payment_manifest_downloader.cc", |
| 61 "payment_manifest_downloader.h", | 62 "payment_manifest_downloader.h", |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 "//base/test:test_support", | 105 "//base/test:test_support", |
| 105 "//components/autofill/core/browser", | 106 "//components/autofill/core/browser", |
| 106 "//components/autofill/core/browser:test_support", | 107 "//components/autofill/core/browser:test_support", |
| 107 "//content/test:test_support", | 108 "//content/test:test_support", |
| 108 "//net:test_support", | 109 "//net:test_support", |
| 109 "//testing/gtest", | 110 "//testing/gtest", |
| 110 "//third_party/icu", | 111 "//third_party/icu", |
| 111 "//third_party/libaddressinput:test_support", | 112 "//third_party/libaddressinput:test_support", |
| 112 ] | 113 ] |
| 113 } | 114 } |
| OLD | NEW |