diff options
author | Martin Storsjo <martin@martin.st> | 2021-03-04 14:24:57 +0200 |
---|---|---|
committer | Martin Storsjo <martin@martin.st> | 2021-03-04 14:24:57 +0200 |
commit | 0a90c09e00c3f6238efe8c89daf2c7e55ea4f011 (patch) | |
tree | a64e2626482a4ba371291c89054926b559565d10 /Android.bp | |
parent | f8db6a7b79f0a8aefbddcb21ce5e17507248b1e9 (diff) | |
parent | 6d10f91a77002b6371ebada491f507ef974ca572 (diff) | |
download | fdk-aac-0a90c09e00c3f6238efe8c89daf2c7e55ea4f011.tar.gz fdk-aac-0a90c09e00c3f6238efe8c89daf2c7e55ea4f011.tar.bz2 fdk-aac-0a90c09e00c3f6238efe8c89daf2c7e55ea4f011.zip |
Merge remote-tracking branch 'aosp/master'
Diffstat (limited to 'Android.bp')
-rw-r--r-- | Android.bp | 40 |
1 files changed, 33 insertions, 7 deletions
@@ -1,3 +1,36 @@ +// *** THIS PACKAGE HAS SPECIAL LICENSING CONDITIONS. PLEASE +// CONSULT THE OWNERS AND opensource-licensing@google.com BEFORE +// DEPENDING ON IT IN YOUR PROJECT. *** +package { + default_applicable_licenses: ["external_aac_license"], +} + +// Added automatically by a large-scale-change that took the approach of +// 'apply every license found to every target'. While this makes sure we respect +// every license restriction, it may not be entirely correct. +// +// e.g. GPL in an MIT project might only apply to the contrib/ directory. +// +// Please consider splitting the single license below into multiple licenses, +// taking care not to lose any license_kind information, and overriding the +// default license using the 'licenses: [...]' property on targets as needed. +// +// For unused files, consider creating a 'fileGroup' with "//visibility:private" +// to attach the license to, and including a comment whether the files may be +// used in the current project. +// See: http://go/android-license-faq +license { + name: "external_aac_license", + visibility: [":__subpackages__"], + license_kinds: [ + "SPDX-license-identifier-Apache-2.0", + "legacy_by_exception_only", // by exception only + ], + license_text: [ + "NOTICE", + ], +} + cc_library_static { name: "libFraunhoferAAC", vendor_available: true, @@ -57,13 +90,6 @@ cc_library_static { darwin: { enabled: false, }, - android: { - sanitize: { - diag: { - cfi: true, - }, - }, - }, }, apex_available: [ |