| 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"
|
| +}
|
|
|