Set min_sdk_version to be part of mainline modules am: 669c6bb63c
Change-Id: Iaf2a2846d41b388062abeac2364f07439c245146
This commit is contained in:
commit
f384c6243d
1 changed files with 17 additions and 3 deletions
20
Android.bp
20
Android.bp
|
|
@ -1,8 +1,11 @@
|
||||||
cc_library_static {
|
cc_library_static {
|
||||||
name: "libavcdec",
|
name: "libavcdec",
|
||||||
vendor_available: true,
|
vendor_available: true,
|
||||||
host_supported:true,
|
host_supported: true,
|
||||||
shared_libs: ["liblog", "libcutils",],
|
shared_libs: [
|
||||||
|
"liblog",
|
||||||
|
"libcutils",
|
||||||
|
],
|
||||||
|
|
||||||
cflags: [
|
cflags: [
|
||||||
"-fPIC",
|
"-fPIC",
|
||||||
|
|
@ -229,13 +232,20 @@ cc_library_static {
|
||||||
// cfi: true,
|
// cfi: true,
|
||||||
blacklist: "libavc_blacklist.txt",
|
blacklist: "libavc_blacklist.txt",
|
||||||
},
|
},
|
||||||
|
apex_available: [
|
||||||
|
"com.android.media.swcodec",
|
||||||
|
],
|
||||||
|
min_sdk_version: "29",
|
||||||
}
|
}
|
||||||
|
|
||||||
cc_library_static {
|
cc_library_static {
|
||||||
name: "libavcenc",
|
name: "libavcenc",
|
||||||
vendor_available: true,
|
vendor_available: true,
|
||||||
host_supported: true,
|
host_supported: true,
|
||||||
shared_libs: ["liblog", "libcutils",],
|
shared_libs: [
|
||||||
|
"liblog",
|
||||||
|
"libcutils",
|
||||||
|
],
|
||||||
|
|
||||||
cflags: [
|
cflags: [
|
||||||
"-DNDEBUG",
|
"-DNDEBUG",
|
||||||
|
|
@ -482,6 +492,10 @@ cc_library_static {
|
||||||
// cfi: true,
|
// cfi: true,
|
||||||
blacklist: "libavc_blacklist.txt",
|
blacklist: "libavc_blacklist.txt",
|
||||||
},
|
},
|
||||||
|
apex_available: [
|
||||||
|
"com.android.media.swcodec",
|
||||||
|
],
|
||||||
|
min_sdk_version: "29",
|
||||||
}
|
}
|
||||||
|
|
||||||
subdirs = ["test"]
|
subdirs = ["test"]
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue