diff options
author | Jiyong Park | 2017-04-27 02:46:32 -0500 |
---|---|---|
committer | Jiyong Park | 2017-05-03 22:25:43 -0500 |
commit | 684ad96c27bae1d9cbb73b5639d1955d3e062374 (patch) | |
tree | 531ddbd24656fd1f794be10861aae95c9dea369e | |
parent | 1e59ce40e3992b38618888937e6045d17b03a3a6 (diff) | |
download | platform-system-core-684ad96c27bae1d9cbb73b5639d1955d3e062374.tar.gz platform-system-core-684ad96c27bae1d9cbb73b5639d1955d3e062374.tar.xz platform-system-core-684ad96c27bae1d9cbb73b5639d1955d3e062374.zip |
Mark libgrallocusage as vendor_available
libgrallocusage is used by libui which will be vendor_available: true.
Test: BOARD_VNDK_VERSION=current m libgrallocusage is successful
Change-Id: I476768d8b103033f3b8e5b09f53f4ac422ae377c
-rw-r--r-- | libgrallocusage/Android.bp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libgrallocusage/Android.bp b/libgrallocusage/Android.bp index 54bfee5c4..cf03868d2 100644 --- a/libgrallocusage/Android.bp +++ b/libgrallocusage/Android.bp | |||
@@ -14,6 +14,7 @@ | |||
14 | 14 | ||
15 | cc_library_static { | 15 | cc_library_static { |
16 | name: "libgrallocusage", | 16 | name: "libgrallocusage", |
17 | vendor_available: true, | ||
17 | cppflags: [ | 18 | cppflags: [ |
18 | "-Weverything", | 19 | "-Weverything", |
19 | "-Werror", | 20 | "-Werror", |
@@ -26,4 +27,5 @@ cc_library_static { | |||
26 | srcs: ["GrallocUsageConversion.cpp"], | 27 | srcs: ["GrallocUsageConversion.cpp"], |
27 | export_include_dirs: ["include"], | 28 | export_include_dirs: ["include"], |
28 | shared_libs: ["android.hardware.graphics.allocator@2.0"], | 29 | shared_libs: ["android.hardware.graphics.allocator@2.0"], |
30 | header_libs: ["libhardware_headers"], | ||
29 | } | 31 | } |