aboutsummaryrefslogtreecommitdiffstats
path: root/cc/config/global.go
diff options
context:
space:
mode:
Diffstat (limited to 'cc/config/global.go')
-rw-r--r--cc/config/global.go11
1 files changed, 0 insertions, 11 deletions
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))