From 9ae5daba80e72ce519bd833ca53b9b8f8a7d85df Mon Sep 17 00:00:00 2001 From: Jiyong Park Date: Thu, 4 Feb 2021 21:02:23 +0900 Subject: [PATCH] Symbol files describing APIs across updatable components are reviewed The build system will soon require that symbol files describing APIs across updatable components (e.g. across APEXes or across sytem/vendor) have the ".map.txt" suffix. This will trigger the NDK API review in the gerrit so that backwards incompatible changes are prevented. Bug: N/A Test: m nothing Change-Id: I114563782f8e796365ca141eb5d22d2e203a7f55 --- libprocessgroup/cgrouprc/Android.bp | 6 +++--- .../cgrouprc/{libcgrouprc.llndk.txt => libcgrouprc.map.txt} | 0 2 files changed, 3 insertions(+), 3 deletions(-) rename libprocessgroup/cgrouprc/{libcgrouprc.llndk.txt => libcgrouprc.map.txt} (100%) diff --git a/libprocessgroup/cgrouprc/Android.bp b/libprocessgroup/cgrouprc/Android.bp index bb5994251..def069b92 100644 --- a/libprocessgroup/cgrouprc/Android.bp +++ b/libprocessgroup/cgrouprc/Android.bp @@ -46,19 +46,19 @@ cc_library { "libcgrouprc_format", ], stubs: { - symbol_file: "libcgrouprc.llndk.txt", + symbol_file: "libcgrouprc.map.txt", versions: ["29"], }, target: { linux: { - version_script: "libcgrouprc.llndk.txt", + version_script: "libcgrouprc.map.txt", }, }, } llndk_library { name: "libcgrouprc.llndk", - symbol_file: "libcgrouprc.llndk.txt", + symbol_file: "libcgrouprc.map.txt", native_bridge_supported: true, export_include_dirs: [ "include", diff --git a/libprocessgroup/cgrouprc/libcgrouprc.llndk.txt b/libprocessgroup/cgrouprc/libcgrouprc.map.txt similarity index 100% rename from libprocessgroup/cgrouprc/libcgrouprc.llndk.txt rename to libprocessgroup/cgrouprc/libcgrouprc.map.txt