BUILD.gn 587 B

1234567891011121314151617
  1. # Copyright 2017 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. import("//build/config/android/rules.gni")
  5. generate_jni("about_ui_jni_headers") {
  6. sources = [ "java/src/org/chromium/components/aboutui/CreditUtils.java" ]
  7. }
  8. android_library("aboutui_java") {
  9. sources = [ "java/src/org/chromium/components/aboutui/CreditUtils.java" ]
  10. deps = [
  11. "//base:jni_java",
  12. "//build/android:build_java",
  13. ]
  14. annotation_processor_deps = [ "//base/android/jni_generator:jni_processor" ]
  15. }