summaryrefslogtreecommitdiffstats
path: root/libnativeloader
diff options
context:
space:
mode:
authorDan Willemsen <dwillemsen@google.com>2017-09-28 17:13:32 -0700
committerDan Willemsen <dwillemsen@google.com>2017-09-29 13:17:06 -0700
commit1e45d533b36df8436a667a63fe624091933cb2ab (patch)
tree0a68593653604ca37e993339f5d8b3c44a02a559 /libnativeloader
parent39071a517738b24611ae373c9a608a4ca00d0630 (diff)
downloadsystem_core-1e45d533b36df8436a667a63fe624091933cb2ab.tar.gz
system_core-1e45d533b36df8436a667a63fe624091933cb2ab.tar.bz2
system_core-1e45d533b36df8436a667a63fe624091933cb2ab.zip
Remove default libraries
libdl is part of system_shared_libs now. -ldl -lpthread -lm are now defaults for host_ldlibs on Linux and Darwin. -lrt is a default for host_ldlibs on Linux. Test: m host Change-Id: I0b3c147b00a8ab6ff289b85db55b88836c905f5c Exempt-From-Owner-Approval: build system cleanup
Diffstat (limited to 'libnativeloader')
-rw-r--r--libnativeloader/Android.bp9
1 files changed, 0 insertions, 9 deletions
diff --git a/libnativeloader/Android.bp b/libnativeloader/Android.bp
index 13f974424..4b21edc46 100644
--- a/libnativeloader/Android.bp
+++ b/libnativeloader/Android.bp
@@ -11,14 +11,6 @@ cc_library {
"libnativebridge",
"libbase",
],
- target: {
- android: {
- shared_libs: ["libdl"],
- },
- host: {
- host_ldlibs: ["-ldl"],
- },
- },
cflags: [
"-Werror",
"-Wall",
@@ -27,5 +19,4 @@ cc_library {
"-fvisibility=hidden",
],
export_include_dirs: ["include"],
- local_include_dirs: ["include"],
}