| // *** THIS PACKAGE HAS SPECIAL LICENSING CONDITIONS. PLEASE |
| // CONSULT THE OWNERS BEFORE DEPENDING ON IT IN YOUR PROJECT. *** |
| soong_namespace {} |
| |
| package { |
| default_applicable_licenses: ["mali_utgard_license"], |
| } |
| |
| license_kind { |
| name: "mali_utgard", |
| conditions: ["proprietary"], |
| } |
| |
| license { |
| name: "mali_utgard_license", |
| visibility: [":__subpackages__"], |
| license_kinds: ["mali_utgard"], |
| license_text: [ |
| "END_USER_LICENCE_AGREEMENT.txt", |
| ], |
| } |
| |
| cc_prebuilt_library_shared { |
| name: "libGLES_mali", |
| strip: { |
| none: true, |
| }, |
| arch: { |
| arm: { |
| srcs: ["lib/egl/libGLES_mali.so"], |
| }, |
| arm64: { |
| srcs: ["lib64/egl/libGLES_mali.so"], |
| }, |
| }, |
| vendor: true, |
| relative_install_path: "egl", |
| |
| compile_multilib: "both", |
| shared_libs: [ |
| "libc++", |
| "libc", |
| "libdl", |
| "liblog", |
| "libm", |
| ], |
| } |