diff options
author | 2021-04-26 17:19:41 -0700 | |
---|---|---|
committer | 2021-04-26 18:41:00 -0700 | |
commit | 203b421043b05f3d18ff8161bf94a32596c4635b (patch) | |
tree | 28fd47025c5709949a498b1fe0a054ed4d4a3171 /sysprop | |
parent | 627280f091b09a20ce67e780130a6945db7a7f84 (diff) |
Remove obsolete llndk_library
Remove llndk_library in favor of cc_library with llndk.symbol_file.
Bug: 170784825
Test: m checkbuild
Test: TestLlndkLibrary
Change-Id: I43580976589a7a2a176d7442be53fa043c0c8324
Diffstat (limited to 'sysprop')
-rw-r--r-- | sysprop/sysprop_test.go | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/sysprop/sysprop_test.go b/sysprop/sysprop_test.go index 6d35f9cd6..f935f062e 100644 --- a/sysprop/sysprop_test.go +++ b/sysprop/sysprop_test.go @@ -52,12 +52,9 @@ func test(t *testing.T, bp string) *android.TestResult { system_shared_libs: [], recovery_available: true, host_supported: true, - llndk_stubs: "liblog.llndk", - } - - llndk_library { - name: "liblog.llndk", - symbol_file: "", + llndk: { + symbol_file: "liblog.map.txt", + } } java_library { |