aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Willemsen <dwillemsen@google.com>2017-10-03 14:15:54 -0700
committerDan Willemsen <dwillemsen@google.com>2017-10-16 14:07:32 -0700
commit8fb854953707a24770f82c9c773d1a9498a39b5e (patch)
treea0aeb20f9115ebf161c7834f0232ecd75cb47424
parentef3988747a29c39edf93bc2a2a589f9f7fc077e5 (diff)
downloadlibese-8fb854953707a24770f82c9c773d1a9498a39b5e.tar.gz
Use target.linux for all linux kernel based targets
Now in Android.bp files, target.linux applies to all targets running a linux kernel (android, linux_glibc, linux_bionic). So common flags/sources/etc can be combined instead of copying them to each target. Test: m Change-Id: If280d450e9765f6876ac22caa8b26e8589ab0137
-rw-r--r--libese-sysdeps/Android.bp6
1 files changed, 1 insertions, 5 deletions
diff --git a/libese-sysdeps/Android.bp b/libese-sysdeps/Android.bp
index 7ce274c..95dba4e 100644
--- a/libese-sysdeps/Android.bp
+++ b/libese-sysdeps/Android.bp
@@ -31,17 +31,13 @@ cc_library {
cflags: ["-DLOG_NDEBUG=0"],
},
target: {
- android: {
+ linux: {
srcs: ["android-sysdeps.c"],
},
darwin: {
srcs: ["darwin-sysdeps.c"],
},
-
- linux_glibc: {
- srcs: ["android-sysdeps.c"],
- },
},
shared_libs: [],