aboutsummaryrefslogtreecommitdiff
path: root/Android.bp
diff options
context:
space:
mode:
authorJustin Yun <justinyun@google.com>2021-01-07 15:51:45 +0900
committerJustin Yun <justinyun@google.com>2021-01-07 17:27:47 +0900
commit944e9ce95ac82610c5b35392ec781f887462d33b (patch)
treea380de74660071f836357b2b272c4610ae41621a /Android.bp
parentbee4d54ba21423b33140dae51eb5c16e73f4d1bc (diff)
downloadfreetype-944e9ce95ac82610c5b35392ec781f887462d33b.tar.gz
Use 'private: true' for the LLDNK-private library
We used 'vendor_available: false' to define VNDK-private libraries. However, 'vendor_available' is originally used to create vendor variants that is available to vendor modules. To avoid the confusion we are replacing it with 'private: true' for the private llndk. Bug: 175768895 Test: build Change-Id: Idf3fe054c59e019f9ed968ca5b6fe49ee6a5e0fc
Diffstat (limited to 'Android.bp')
-rw-r--r--Android.bp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Android.bp b/Android.bp
index 4fa48bcce..0e2eb2123 100644
--- a/Android.bp
+++ b/Android.bp
@@ -102,7 +102,7 @@ cc_library {
llndk_library {
name: "libft2.llndk",
- vendor_available: false,
+ private: true,
symbol_file: "libft2.map.txt",
export_include_dirs: ["include"],
}