aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Willemsen <dwillemsen@google.com>2017-10-03 14:13:24 -0700
committerDan Willemsen <dwillemsen@google.com>2017-10-16 13:46:57 -0700
commit0a37c2cb430a2b7e9ae7c51766e25ec9b542c94f (patch)
tree5ce600eab4fab70178e69f7814e01b5295aa1523
parent040b198ed24f5b67eaa6415459c05d68453b19f3 (diff)
downloadfec-0a37c2cb430a2b7e9ae7c51766e25ec9b542c94f.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: I45c7b44cda6399ac0f6754e14aa2df1a539838f0
-rw-r--r--Android.bp7
1 files changed, 1 insertions, 6 deletions
diff --git a/Android.bp b/Android.bp
index 37b6f50..a7d74e3 100644
--- a/Android.bp
+++ b/Android.bp
@@ -16,12 +16,7 @@ cc_library_static {
export_include_dirs: ["."],
target: {
- linux_glibc: {
- sanitize: {
- misc_undefined: ["integer"],
- },
- },
- android: {
+ linux: {
sanitize: {
misc_undefined: ["integer"],
},