summaryrefslogtreecommitdiff
path: root/Android.bp
diff options
context:
space:
mode:
authorJooyung Han <jooyung@google.com>2019-06-25 00:12:01 +0900
committerJooyung Han <jooyung@google.com>2019-06-25 00:12:01 +0900
commit8be8e357004effb7c5e3b3281d455e8c1bbe5e7e (patch)
treeab2fe640ac725a35bfa7bac58f5db2b54f08ea63 /Android.bp
parent06e0491b859354fe73386b0099bef24d38c32387 (diff)
downloadexpat-8be8e357004effb7c5e3b3281d455e8c1bbe5e7e.tar.gz
Do not use stl
expat is a C-only module. Omitting "stl" property causes libexpat.so depending on c++ library unnecessarily. (For example, system variant of libexpat.so depends on libstdc++.so and vendor variant depends on libc++.so.) Test: build Change-Id: I31611ce92cc58e3ee4dd2ad5f755aa0bad1ab431
Diffstat (limited to 'Android.bp')
-rw-r--r--Android.bp1
1 files changed, 1 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp
index 1a7842d8..20cacf19 100644
--- a/Android.bp
+++ b/Android.bp
@@ -41,6 +41,7 @@ cc_library {
},
},
+ stl: "none",
local_include_dirs: ["lib"],
export_include_dirs: ["lib"],
}