Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(262)

Side by Side Diff: components/payments/content/BUILD.gn

Issue 2802043002: Use web-app manifest format for Android payment apps. (Closed)
Patch Set: Address java comments. Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698