1package { 2 default_applicable_licenses: ["external_llvm_lib_Support_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: "external_llvm_lib_Support_license", 21 visibility: [":__subpackages__"], 22 license_kinds: [ 23 "SPDX-license-identifier-BSD", 24 "SPDX-license-identifier-MIT", 25 "SPDX-license-identifier-NCSA", 26 "legacy_unencumbered", 27 ], 28 license_text: [ 29 "COPYRIGHT.regex", 30 ], 31} 32 33cc_library_static { 34 name: "libLLVMSupport", 35 vendor_available: true, 36 product_available: true, 37 defaults: ["llvm-defaults-no-generated-headers"], 38 target: { 39 // llvm-defaults turns off host builds by default, turn it back on for 40 // modules that are used to build llvm-tblgen 41 host: { 42 enabled: true, 43 }, 44 windows: { 45 enabled: true, 46 }, 47 }, 48 srcs: [ 49 "*.c", 50 "*.cpp", 51 ], 52} 53