1package { 2 default_applicable_licenses: ["system_memory_libion_license"], 3} 4 5// Added automatically by a large-scale-change that took the approach of 6// 'apply every license found to every target'. While this makes sure we respect 7// every license restriction, it may not be entirely correct. 8// 9// e.g. GPL in an MIT project might only apply to the contrib/ directory. 10// 11// Please consider splitting the single license below into multiple licenses, 12// taking care not to lose any license_kind information, and overriding the 13// default license using the 'licenses: [...]' property on targets as needed. 14// 15// For unused files, consider creating a 'fileGroup' with "//visibility:private" 16// to attach the license to, and including a comment whether the files may be 17// used in the current project. 18// See: http://go/android-license-faq 19license { 20 name: "system_memory_libion_license", 21 visibility: [":__subpackages__"], 22 license_kinds: [ 23 "SPDX-license-identifier-Apache-2.0", 24 "SPDX-license-identifier-GPL-2.0", 25 ], 26 // large-scale-change unable to identify any license_text files 27} 28 29cc_library { 30 name: "libion", 31 vendor_available: true, 32 product_available: true, 33 recovery_available: true, 34 vndk: { 35 enabled: true, 36 support_system_process: true, 37 }, 38 srcs: ["ion.c"], 39 shared_libs: ["liblog"], 40 local_include_dirs: [ 41 "include", 42 "kernel-headers", 43 ], 44 export_include_dirs: [ 45 "include", 46 "kernel-headers", 47 ], 48 cflags: ["-Werror"], 49 min_sdk_version: "29", 50} 51 52cc_binary { 53 name: "iontest", 54 srcs: ["ion_test.c"], 55 static_libs: ["libion"], 56 shared_libs: ["liblog"], 57 cflags: ["-Werror"], 58} 59 60subdirs = ["tests"] 61