Android.bp 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. // Copyright (C) 2016 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. ndk_headers {
  15. name: "libOpenMAXAL_headers",
  16. from: "include",
  17. to: "",
  18. srcs: ["include/OMXAL/**/*.h"], // All headers in all subdirs.
  19. license: "include/OMXAL/NOTICE",
  20. }
  21. ndk_library {
  22. name: "libOpenMAXAL",
  23. symbol_file: "src/libOpenMAXAL.map.txt",
  24. first_version: "14",
  25. unversioned_until: "current",
  26. }
  27. ndk_headers {
  28. name: "libOpenSLES_ndk_headers",
  29. from: "include",
  30. to: "",
  31. srcs: ["include/SLES/**/*.h"], // All headers in all subdirs.
  32. license: "include/SLES/NOTICE",
  33. }
  34. ndk_library {
  35. name: "libOpenSLES",
  36. symbol_file: "src/libOpenSLES.map.txt",
  37. first_version: "9",
  38. unversioned_until: "current",
  39. }
  40. cc_library_headers {
  41. name: "libOpenSLES_headers",
  42. export_include_dirs: ["include"],
  43. }
  44. subdirs = [
  45. "src",
  46. "tests",
  47. ]