From 40350ab4f2a3baaae4324197ff713c1a11105816 Mon Sep 17 00:00:00 2001 From: Jiyong Park Date: Thu, 3 Aug 2017 21:22:50 +0900 Subject: List of VNDK-related libs are exported to make LL-NDK, VNDK-core, VNDK-SP libraries are exported to make as SOONG_LLNDK_LIBRARIES, SOONG_VNDK_CORE_LIBRARIES, and SOONG_VNDK_SAMEPROCESS_LIBRARIES. This can be used to auto-generate ld.config.txt from a template. Bug: 64013660 Test: BOARD_VNDK_VERSION=current m -j successful Test: check out/soong/make_vars*.mk and look for SOONG_*_LIBRARIES Change-Id: I0f4c5d05d9cd28c3fc9fdcca6ce0e6eaeaacbe8d --- cc/config/global.go | 11 ----------- 1 file changed, 11 deletions(-) (limited to 'cc/config/global.go') diff --git a/cc/config/global.go b/cc/config/global.go index 65a211c6..56de3513 100644 --- a/cc/config/global.go +++ b/cc/config/global.go @@ -185,17 +185,6 @@ func bionicHeaders(bionicArch, kernelArch string) string { }, " ") } -func VndkLibraries() []string { - return []string{} -} - -// This needs to be kept up to date with the list in system/core/rootdir/etc/ld.config.txt: -// [vendor] -// namespace.default.link.system.shared_libs -func LLndkLibraries() []string { - return []string{"libc", "libm", "libdl", "liblog", "libandroid_net", "ld-android", "libvndksupport", "libnativewindow"} -} - func replaceFirst(slice []string, from, to string) { if slice[0] != from { panic(fmt.Errorf("Expected %q, found %q", from, to)) -- cgit v1.2.3