aboutsummaryrefslogtreecommitdiffstats
path: root/Android.bp
diff options
context:
space:
mode:
authorPavlin Radoslavov <pavlin@google.com>2017-01-20 02:19:38 +0000
committerandroid-build-merger <android-build-merger@google.com>2017-01-20 02:19:38 +0000
commit4910e5a3520d92c4e6d37bfabc833771e7f02243 (patch)
tree339b0ba2efbf15b29ef18e364b6998f3aa05edca /Android.bp
parentde03facdb2a48021ec2b25e25e28926c35c2acfc (diff)
parent1679274c9cbf49a0998070d42a24207d189bbd93 (diff)
downloadfdk-aac-4910e5a3520d92c4e6d37bfabc833771e7f02243.tar.gz
fdk-aac-4910e5a3520d92c4e6d37bfabc833771e7f02243.tar.bz2
fdk-aac-4910e5a3520d92c4e6d37bfabc833771e7f02243.zip
Merge "Change build config of aac from Android.mk to Android.bp" am: 8334e4b410 am: 2eba55c5a8
am: 1679274c9c Change-Id: I17c2d7f5c558e17fc4b579d879160f4d6a6ce587
Diffstat (limited to 'Android.bp')
-rw-r--r--Android.bp32
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",
+ ],
+}