BUILD.gn 728 B

123456789101112131415161718192021
  1. # Copyright 2020 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("jni_headers") {
  6. sources = [ "java/src/org/chromium/components/user_prefs/UserPrefs.java" ]
  7. }
  8. android_library("java") {
  9. sources = [ "java/src/org/chromium/components/user_prefs/UserPrefs.java" ]
  10. deps = [
  11. "//base:jni_java",
  12. "//build/android:build_java",
  13. "//components/prefs/android:java",
  14. "//content/public/android:content_full_java",
  15. "//third_party/androidx:androidx_annotation_annotation_java",
  16. ]
  17. annotation_processor_deps = [ "//base/android/jni_generator:jni_processor" ]
  18. }