diff options
author | Tao Bao <tbao@google.com> | 2018-05-04 18:30:47 +0200 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2018-05-04 18:30:47 +0200 |
commit | d7d087f31ca4ab3c82dc0d19dcaeab863556fdf5 (patch) | |
tree | 55d24b52c2b73dc7e15db0216a0a3df314ec0037 /otautil | |
parent | Merge "Move menu headers/items to std::vector<std::string>." (diff) | |
parent | Merge "otautil: Only build the needed files for host build." (diff) | |
download | android_bootable_recovery-d7d087f31ca4ab3c82dc0d19dcaeab863556fdf5.tar android_bootable_recovery-d7d087f31ca4ab3c82dc0d19dcaeab863556fdf5.tar.gz android_bootable_recovery-d7d087f31ca4ab3c82dc0d19dcaeab863556fdf5.tar.bz2 android_bootable_recovery-d7d087f31ca4ab3c82dc0d19dcaeab863556fdf5.tar.lz android_bootable_recovery-d7d087f31ca4ab3c82dc0d19dcaeab863556fdf5.tar.xz android_bootable_recovery-d7d087f31ca4ab3c82dc0d19dcaeab863556fdf5.tar.zst android_bootable_recovery-d7d087f31ca4ab3c82dc0d19dcaeab863556fdf5.zip |
Diffstat (limited to 'otautil')
-rw-r--r-- | otautil/Android.bp | 17 |
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", + ], }, }, } |