blob: affc83769e34287a2776c73d16cd5535fe927a5f [file] [log] [blame]
Bob Badour56786ac2021-02-25 15:24:36 -08001package {
2 default_applicable_licenses: [
3 "frameworks_av_media_libstagefright_codecs_common_license",
4 ],
5}
6
7// Added automatically by a large-scale-change
8// See: http://go/android-license-faq
9license {
10 name: "frameworks_av_media_libstagefright_codecs_common_license",
11 visibility: [":__subpackages__"],
12 license_kinds: [
13 "SPDX-license-identifier-Apache-2.0",
14 ],
15 license_text: [
16 "NOTICE",
17 ],
18}
19
Colin Cross6f82b4d2017-04-20 17:30:33 -070020cc_library {
21 name: "libstagefright_enc_common",
Jiyong Park308cae02017-08-07 13:17:05 +090022 vendor_available: true,
Jooyung Han23d39982020-04-30 04:20:25 +090023 min_sdk_version: "29",
Ray Essick5556a6c2022-01-27 20:02:35 -080024 apex_available: [
25 "//apex_available:platform",
26 "com.android.media.swcodec",
27 ],
Colin Cross6f82b4d2017-04-20 17:30:33 -070028
29 srcs: ["cmnMemory.c"],
30
31 arch: {
32 arm: {
33 instruction_set: "arm",
34 },
35 },
36
37 export_include_dirs: ["include"],
38
39 cflags: ["-Werror"],
Ayushi Khopkar75c40ae2020-07-20 18:31:41 +053040
41 host_supported: true,
42 target: {
43 darwin: {
44 enabled: false,
45 },
46 },
Colin Cross6f82b4d2017-04-20 17:30:33 -070047}