blob: a33cb12c45ca402db965d82ca9a0bd6a4fb807b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# Copyright 2017 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/rules.gni")
generate_jni("about_ui_jni_headers") {
sources = [ "java/src/org/chromium/components/aboutui/CreditUtils.java" ]
}
android_library("aboutui_java") {
sources = [ "java/src/org/chromium/components/aboutui/CreditUtils.java" ]
deps = [
"//base:base_java",
"//base:jni_java",
]
annotation_processor_deps = [ "//base/android/jni_generator:jni_processor" ]
}
|