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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 import("//build/config/android/config.gni")
6 import("//build/config/android/rules.gni")
7
8 static_library("payments_jni") {
9 sources = [
10 "payments_jni_registrar.cc",
11 ]
12 deps = [
13 ":jni_headers",
14 "//components/payments:payment_request",
15 "//components/payments:payment_validation",
16 ]
17 }
18
19 generate_jni("jni_headers") {
20 sources = [
21 "//chrome/android/java/src/org/chromium/chrome/browser/payments/PaymentValid ator.java",
22 ]
23 jni_package = "payments"
24 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698