aboutsummaryrefslogtreecommitdiffstats
path: root/Android.bp
diff options
context:
space:
mode:
authorPavlin Radoslavov <pavlin@google.com>2017-01-20 02:11:06 +0000
committerandroid-build-merger <android-build-merger@google.com>2017-01-20 02:11:06 +0000
commit1679274c9cbf49a0998070d42a24207d189bbd93 (patch)
tree339b0ba2efbf15b29ef18e364b6998f3aa05edca /Android.bp
parentbfba552d9eb18b59d27dd414a5a68dbdc113c7d8 (diff)
parent2eba55c5a86ccd74a25e7df88d30c9a9c87cc396 (diff)
downloadfdk-aac-1679274c9cbf49a0998070d42a24207d189bbd93.tar.gz
fdk-aac-1679274c9cbf49a0998070d42a24207d189bbd93.tar.bz2
fdk-aac-1679274c9cbf49a0998070d42a24207d189bbd93.zip
Merge "Change build config of aac from Android.mk to Android.bp" am: 8334e4b410
am: 2eba55c5a8 Change-Id: I16c8e041daad6f21dd80ec50db52ae488f1b91c5
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",
+ ],
+}