summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2018-05-04 07:23:55 +0200
committerTao Bao <tbao@google.com>2018-05-04 08:16:03 +0200
commit13446c032b24964f061c6cf094dc11b3d17e34fa (patch)
tree55d24b52c2b73dc7e15db0216a0a3df314ec0037
parentMerge "Move menu headers/items to std::vector<std::string>." (diff)
downloadandroid_bootable_recovery-13446c032b24964f061c6cf094dc11b3d17e34fa.tar
android_bootable_recovery-13446c032b24964f061c6cf094dc11b3d17e34fa.tar.gz
android_bootable_recovery-13446c032b24964f061c6cf094dc11b3d17e34fa.tar.bz2
android_bootable_recovery-13446c032b24964f061c6cf094dc11b3d17e34fa.tar.lz
android_bootable_recovery-13446c032b24964f061c6cf094dc11b3d17e34fa.tar.xz
android_bootable_recovery-13446c032b24964f061c6cf094dc11b3d17e34fa.tar.zst
android_bootable_recovery-13446c032b24964f061c6cf094dc11b3d17e34fa.zip
-rw-r--r--otautil/Android.bp17
1 files changed, 10 insertions, 7 deletions
diff --git a/otautil/Android.bp b/otautil/Android.bp
index 45d119cb5..572d8df86 100644
--- a/otautil/Android.bp
+++ b/otautil/Android.bp
@@ -17,17 +17,13 @@ cc_library_static {
host_supported: true,
+ // Minimal set of files to support host build.
srcs: [
- "SysUtil.cpp",
- "DirUtil.cpp",
- "ThermalUtil.cpp",
- "mounts.cpp",
"paths.cpp",
"rangeset.cpp",
],
static_libs: [
- "libselinux",
"libbase",
],
@@ -42,10 +38,17 @@ cc_library_static {
],
target: {
- darwin: {
- exclude_srcs: [
+ android: {
+ srcs: [
+ "DirUtil.cpp",
+ "SysUtil.cpp",
+ "ThermalUtil.cpp",
"mounts.cpp",
],
+
+ static_libs: [
+ "libselinux",
+ ],
},
},
}