Merge "otautil: Export headers." am: 2cedab7af9 am: b50d7cf9c9

am: d284e36fc6

Change-Id: I7b7f601bed669428fc8ded3fee9e15a732e90c3c
This commit is contained in:
Tao Bao 2017-10-03 23:43:40 +00:00 committed by android-build-merger
commit 010c92d2d4
8 changed files with 9 additions and 4 deletions

View file

@ -56,6 +56,7 @@ endif
LOCAL_MODULE := librecovery
LOCAL_STATIC_LIBRARIES := \
libminui \
libotautil \
libvintf_recovery \
libcrypto_utils \
libcrypto \

View file

@ -30,4 +30,8 @@ cc_library_static {
"-Werror",
"-Wall",
],
export_include_dirs: [
"include",
],
}

View file

@ -14,7 +14,7 @@
* limitations under the License.
*/
#include "DirUtil.h"
#include "otautil/DirUtil.h"
#include <dirent.h>
#include <errno.h>

View file

@ -14,7 +14,7 @@
* limitations under the License.
*/
#include "SysUtil.h"
#include "otautil/SysUtil.h"
#include <fcntl.h>
#include <stdint.h> // SIZE_MAX

View file

@ -14,7 +14,7 @@
* limitations under the License.
*/
#include "ThermalUtil.h"
#include "otautil/ThermalUtil.h"
#include <dirent.h>
#include <stdio.h>
@ -77,4 +77,4 @@ int GetMaxValueFromThermalZone() {
}
LOG(INFO) << "current maximum temperature: " << max_temperature;
return max_temperature;
}
}