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

Unified Diff: components/payments/android/BUILD.gn

Issue 2373103002: [Web Payments] Common Payments validation (Closed)
Patch Set: Deps and new field Created 4 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: components/payments/android/BUILD.gn
diff --git a/components/payments/android/BUILD.gn b/components/payments/android/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..01ccece0826a6d2a280a01e183e0dcfe3028d536
--- /dev/null
+++ b/components/payments/android/BUILD.gn
@@ -0,0 +1,24 @@
+# Copyright 2016 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+import("//build/config/android/config.gni")
+import("//build/config/android/rules.gni")
+
+static_library("payments_jni") {
+ sources = [
+ "payments_jni_registrar.cc",
+ ]
+ deps = [
+ ":jni_headers",
+ "//components/payments:payment_request",
+ "//components/payments:payment_validation",
+ ]
+}
+
+generate_jni("jni_headers") {
+ sources = [
+ "//chrome/android/java/src/org/chromium/chrome/browser/payments/PaymentValidator.java",
+ ]
+ jni_package = "payments"
+}

Powered by Google App Engine
This is Rietveld 408576698