1package { 2 default_applicable_licenses: ["external_ImageMagick_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// 19// large-scale-change included anything that looked like it might be a license 20// text as a license_text. e.g. LICENSE, NOTICE, COPYING etc. 21// 22// Please consider removing redundant or irrelevant files from 'license_text:'. 23// See: http://go/android-license-faq 24license { 25 name: "external_ImageMagick_license", 26 visibility: [":__subpackages__"], 27 license_kinds: [ 28 "SPDX-license-identifier-Apache-2.0", 29 "SPDX-license-identifier-BSD", 30 "SPDX-license-identifier-MIT", 31 "legacy_notice", 32 "legacy_unencumbered", 33 ], 34 license_text: [ 35 "LICENSE", 36 "NOTICE", 37 ], 38} 39 40cc_library_headers { 41 name: "Magick_headers", 42 export_include_dirs: ["."], 43 sdk_version: "24", 44 45 arch: { 46 arm: { 47 export_include_dirs: [ 48 "configs/arm", 49 ], 50 }, 51 arm64: { 52 export_include_dirs: [ 53 "configs/arm64", 54 ], 55 }, 56 x86: { 57 export_include_dirs: [ 58 "configs/x86", 59 ], 60 }, 61 x86_64: { 62 export_include_dirs: [ 63 "configs/x86-64", 64 ], 65 }, 66 }, 67} 68