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
This commit is contained in:
parent
4b24f09124
commit
9ae5daba80
|
@ -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",
|
||||
|
|
Loading…
Reference in New Issue