From a4aa860efb3b3ff2d535a4af45457e888aefa85e Mon Sep 17 00:00:00 2001 From: Jiyong Park Date: Mon, 7 Aug 2017 13:12:02 +0900 Subject: Make software codecs as VNDK Software codecs and their dependencies are marked as VNDK (or just vendor_available:true for static/header libs). Bug: 37343418 Test: build the software codecs with BOARD_VNDK_VERSION=current Change-Id: I9ecedb5a95abc9978ff7ed3538bd2dedec750c7d --- Android.bp | 1 + 1 file changed, 1 insertion(+) (limited to 'Android.bp') diff --git a/Android.bp b/Android.bp index 75fe8af..daad82c 100644 --- a/Android.bp +++ b/Android.bp @@ -1,5 +1,6 @@ cc_library_static { name: "libFraunhoferAAC", + vendor_available: true, srcs: [ "libAACdec/src/*.cpp", "libAACenc/src/*.cpp", -- cgit v1.2.3 From 3e8a17c1c1a7bed415b033734e9ac4a5dd7673d1 Mon Sep 17 00:00:00 2001 From: Chih-Hung Hsieh Date: Wed, 27 Sep 2017 10:17:29 -0700 Subject: Use -Werror in external/aac Bug: 66996870 Test: build with WITH_TIDY=1 Exempt-From-Owner-Approval: Colin +2 should be the owner approval Change-Id: I167f73ee9dc5e977fd6976f48732ae1e1fe13c8b --- Android.bp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Android.bp') diff --git a/Android.bp b/Android.bp index 75fe8af..0ae0b84 100644 --- a/Android.bp +++ b/Android.bp @@ -12,6 +12,8 @@ cc_library_static { "libSBRenc/src/*.cpp", ], cflags: [ + "-Werror", + "-Wno-constant-conversion", "-Wno-sequence-point", "-Wno-extra", "-Wno-#warnings", -- cgit v1.2.3