aboutsummaryrefslogtreecommitdiffstats
path: root/Android.bp
diff options
context:
space:
mode:
authorPavlin Radoslavov <pavlin@google.com>2017-01-20 02:35:09 +0000
committerandroid-build-merger <android-build-merger@google.com>2017-01-20 02:35:09 +0000
commitdfc913249657ddb9b10369bcf503d0b151b9afa6 (patch)
tree760735b496e4bbe6a41199c91721456581b5cb70 /Android.bp
parent889731b62d694bf8bc7a6fd28a6b97b8755ec902 (diff)
parent4910e5a3520d92c4e6d37bfabc833771e7f02243 (diff)
downloadfdk-aac-dfc913249657ddb9b10369bcf503d0b151b9afa6.tar.gz
fdk-aac-dfc913249657ddb9b10369bcf503d0b151b9afa6.tar.bz2
fdk-aac-dfc913249657ddb9b10369bcf503d0b151b9afa6.zip
Merge "Change build config of aac from Android.mk to Android.bp" am: 8334e4b410 am: 2eba55c5a8 am: 1679274c9c
am: 4910e5a352 Change-Id: I06e73ca6768323110b658548a189a1f69695cc08
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",
+ ],
+}