| OLD | NEW |
| (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 } |
| OLD | NEW |