From 2bfbcda5178f27f427f36202afb1d9f9eeb76dc6 Mon Sep 17 00:00:00 2001 From: Jiyong Park Date: Wed, 6 Nov 2019 12:44:43 +0900 Subject: [PATCH] Rename # vndk tag to # llndk The APIs that are tagged with # vndk are actually for LLNDK libraries. Although LLNDK is part of VNDK, calling those APIs 'vndk' has given users a wrong perception that the APIs don't need to be kept stable because that's the norm for most of the VNDK libraries that are not LLNDK. In order to eliminate the misunderstanding, rename the tag to 'llndk' so that people introducing new such API will realize what they are signing themselves up for. Exempt-From-Owner-Approval: cherry-pick from internal gerrit Bug: 143765505 Test: m Merged-In: If673fbb9059201e79e691d93e0dc77c6555cba39 (cherry picked from commit 3f4f491dcbd9b1257b4458511eec1958020e2aca) Change-Id: If673fbb9059201e79e691d93e0dc77c6555cba39 --- libft2.map.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/libft2.map.txt b/libft2.map.txt index 4671ad62b..14c37fe15 100644 --- a/libft2.map.txt +++ b/libft2.map.txt @@ -1,13 +1,13 @@ LIBFT2 { global: - FT_Done_Face; # vndk - FT_Done_FreeType; # vndk - FT_Get_Char_Index; # vndk - FT_Init_FreeType; # vndk - FT_Load_Glyph; # vndk - FT_New_Face; # vndk - FT_New_Memory_Face; # vndk - FT_Set_Char_Size; # vndk + FT_Done_Face; # llndk + FT_Done_FreeType; # llndk + FT_Get_Char_Index; # llndk + FT_Init_FreeType; # llndk + FT_Load_Glyph; # llndk + FT_New_Face; # llndk + FT_New_Memory_Face; # llndk + FT_Set_Char_Size; # llndk local: *; };