From 0477b42276f28bed956bbb93ff53a2d42fefbe04 Mon Sep 17 00:00:00 2001 From: Colin Cross Date: Tue, 13 Oct 2020 18:43:54 -0700 Subject: Add llndk_stubs property Prepare for making the relationship between an llndk_library stubs module and the cc_library implementation module explicit by adding an llndk_stubs property. Each cc_library will be updated to point to its llndk_library, and the llndk_library name will be changed to make the .llndk suffix explicit. Then the implicit connection and suffix can be removed. Bug: 170784825 Test: m checkbuild Change-Id: I6b0482a3f286ec29b2e928551aa4317749f2b499 --- sysprop/sysprop_test.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'sysprop/sysprop_test.go') diff --git a/sysprop/sysprop_test.go b/sysprop/sysprop_test.go index 711129c84..c8b16cb62 100644 --- a/sysprop/sysprop_test.go +++ b/sysprop/sysprop_test.go @@ -268,6 +268,7 @@ func TestSyspropLibrary(t *testing.T) { system_shared_libs: [], recovery_available: true, host_supported: true, + llndk_stubs: "liblog.llndk", } cc_binary_host { @@ -276,7 +277,7 @@ func TestSyspropLibrary(t *testing.T) { } llndk_library { - name: "liblog", + name: "liblog.llndk", symbol_file: "", } -- cgit v1.2.3-59-g8ed1b