diff options
author | Martin Storsjo <martin@martin.st> | 2017-03-14 14:37:45 +0200 |
---|---|---|
committer | Martin Storsjo <martin@martin.st> | 2017-03-14 14:37:45 +0200 |
commit | 32c712cbd10975888a6e0bd117387a2c65e5a23c (patch) | |
tree | a5af2a7e499d5022a16f959c70f1f21f2ca6fae1 /Android.bp | |
parent | 74c1a2a4f831285cbd93ec1427f1670d3c5c5e52 (diff) | |
parent | b0af861f5a0671d1bb65339fdb674cca15090b71 (diff) | |
download | fdk-aac-32c712cbd10975888a6e0bd117387a2c65e5a23c.tar.gz fdk-aac-32c712cbd10975888a6e0bd117387a2c65e5a23c.tar.bz2 fdk-aac-32c712cbd10975888a6e0bd117387a2c65e5a23c.zip |
Merge remote-tracking branch 'aosp/master'
Diffstat (limited to 'Android.bp')
-rw-r--r-- | Android.bp | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp new file mode 100644 index 0000000..75fe8af --- /dev/null +++ b/Android.bp @@ -0,0 +1,32 @@ +cc_library_static { + name: "libFraunhoferAAC", + srcs: [ + "libAACdec/src/*.cpp", + "libAACenc/src/*.cpp", + "libPCMutils/src/*.cpp", + "libFDK/src/*.cpp", + "libSYS/src/*.cpp", + "libMpegTPDec/src/*.cpp", + "libMpegTPEnc/src/*.cpp", + "libSBRdec/src/*.cpp", + "libSBRenc/src/*.cpp", + ], + cflags: [ + "-Wno-sequence-point", + "-Wno-extra", + "-Wno-#warnings", + "-Wno-constant-logical-operand", + "-Wno-self-assign", + ], + export_include_dirs: [ + "libAACdec/include", + "libAACenc/include", + "libPCMutils/include", + "libFDK/include", + "libSYS/include", + "libMpegTPDec/include", + "libMpegTPEnc/include", + "libSBRdec/include", + "libSBRenc/include", + ], +} |