Android.bp 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. // Copyright (C) 2017 The Android Open Source Project
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. genrule {
  15. name: "statslog-SystemUI-java-gen",
  16. tools: ["stats-log-api-gen"],
  17. cmd: "$(location stats-log-api-gen) --java $(out) --module sysui --javaPackage com.android.systemui.shared.system --javaClass SysUiStatsLog",
  18. out: ["com/android/systemui/shared/system/SysUiStatsLog.java"],
  19. }
  20. java_library {
  21. name: "SystemUI-statsd",
  22. srcs: [
  23. ":statslog-SystemUI-java-gen",
  24. ],
  25. }
  26. android_library {
  27. name: "SystemUISharedLib",
  28. srcs: [
  29. "src/**/*.java",
  30. "src/**/I*.aidl",
  31. ],
  32. static_libs: [
  33. "PluginCoreLib",
  34. ],
  35. java_version: "1.8",
  36. min_sdk_version: "26",
  37. }