1
0
mirror of https://github.com/mstorsjo/fdk-aac.git synced 2025-02-18 04:00:36 +01:00

aacdec: Add host support

Test: Build libFraunhoferAAC on host
Bug: 151595970

Change-Id: I4870251b6fe2143dca6b5eed9c2643705c63952c
This commit is contained in:
Anuj Joshi 2020-03-27 10:44:41 +05:30
parent 7f7bbce892
commit b09c5ae9f0

View File

@ -1,6 +1,7 @@
cc_library_static { cc_library_static {
name: "libFraunhoferAAC", name: "libFraunhoferAAC",
vendor_available: true, vendor_available: true,
host_supported:true,
srcs: [ srcs: [
"libAACdec/src/*.cpp", "libAACdec/src/*.cpp",
"libAACenc/src/*.cpp", "libAACenc/src/*.cpp",
@ -52,4 +53,10 @@ cc_library_static {
"libSACdec/include", "libSACdec/include",
"libSACenc/include", "libSACenc/include",
], ],
target: {
darwin: {
enabled: false,
},
},
} }