summaryrefslogtreecommitdiffstats
path: root/otafault
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2017-09-29 06:29:11 +0200
committerTao Bao <tbao@google.com>2017-09-29 19:29:53 +0200
commitd33b2f86b79573ccf73fd211d0813b2663fafd38 (patch)
treef9b6b7add754bf4548a17aaf1923f886c5e65b47 /otafault
parentMerge "otafault: Remove the use of LOCAL_WHOLE_STATIC_LIBRARIES." (diff)
downloadandroid_bootable_recovery-d33b2f86b79573ccf73fd211d0813b2663fafd38.tar
android_bootable_recovery-d33b2f86b79573ccf73fd211d0813b2663fafd38.tar.gz
android_bootable_recovery-d33b2f86b79573ccf73fd211d0813b2663fafd38.tar.bz2
android_bootable_recovery-d33b2f86b79573ccf73fd211d0813b2663fafd38.tar.lz
android_bootable_recovery-d33b2f86b79573ccf73fd211d0813b2663fafd38.tar.xz
android_bootable_recovery-d33b2f86b79573ccf73fd211d0813b2663fafd38.tar.zst
android_bootable_recovery-d33b2f86b79573ccf73fd211d0813b2663fafd38.zip
Diffstat (limited to 'otafault')
-rw-r--r--otafault/Android.mk11
-rw-r--r--otafault/config.cpp4
-rw-r--r--otafault/include/otafault/config.h (renamed from otafault/config.h)0
-rw-r--r--otafault/include/otafault/ota_io.h (renamed from otafault/ota_io.h)0
-rw-r--r--otafault/ota_io.cpp4
-rw-r--r--otafault/test.cpp2
6 files changed, 11 insertions, 10 deletions
diff --git a/otafault/Android.mk b/otafault/Android.mk
index 3e14f77f3..5ec8a192a 100644
--- a/otafault/Android.mk
+++ b/otafault/Android.mk
@@ -31,8 +31,8 @@ LOCAL_CFLAGS := \
LOCAL_SRC_FILES := config.cpp ota_io.cpp
LOCAL_MODULE_TAGS := eng
LOCAL_MODULE := libotafault
-LOCAL_C_INCLUDES := bootable/recovery
-LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)
+LOCAL_C_INCLUDES := $(LOCAL_PATH)/include
+LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)/include
LOCAL_STATIC_LIBRARIES := $(otafault_static_libs)
include $(BUILD_STATIC_LIBRARY)
@@ -41,12 +41,13 @@ include $(BUILD_STATIC_LIBRARY)
# ===============================
include $(CLEAR_VARS)
-LOCAL_SRC_FILES := config.cpp ota_io.cpp test.cpp
+LOCAL_SRC_FILES := test.cpp
LOCAL_MODULE_TAGS := tests
LOCAL_MODULE := otafault_test
-LOCAL_STATIC_LIBRARIES := $(otafault_static_libs)
+LOCAL_STATIC_LIBRARIES := \
+ libotafault \
+ $(otafault_static_libs)
LOCAL_CFLAGS := -Wall -Werror
-LOCAL_C_INCLUDES := bootable/recovery
LOCAL_FORCE_STATIC_EXECUTABLE := true
include $(BUILD_EXECUTABLE)
diff --git a/otafault/config.cpp b/otafault/config.cpp
index c11f77452..3993948ff 100644
--- a/otafault/config.cpp
+++ b/otafault/config.cpp
@@ -14,7 +14,7 @@
* limitations under the License.
*/
-#include "config.h"
+#include "otafault/config.h"
#include <map>
#include <string>
@@ -22,7 +22,7 @@
#include <android-base/stringprintf.h>
#include <ziparchive/zip_archive.h>
-#include "ota_io.h"
+#include "otafault/ota_io.h"
#define OTAIO_MAX_FNAME_SIZE 128
diff --git a/otafault/config.h b/otafault/include/otafault/config.h
index cc4bfd2ad..cc4bfd2ad 100644
--- a/otafault/config.h
+++ b/otafault/include/otafault/config.h
diff --git a/otafault/ota_io.h b/otafault/include/otafault/ota_io.h
index 45e481a62..45e481a62 100644
--- a/otafault/ota_io.h
+++ b/otafault/include/otafault/ota_io.h
diff --git a/otafault/ota_io.cpp b/otafault/ota_io.cpp
index a82a7ee59..1308973a5 100644
--- a/otafault/ota_io.cpp
+++ b/otafault/ota_io.cpp
@@ -14,7 +14,7 @@
* limitations under the License.
*/
-#include "ota_io.h"
+#include "otafault/ota_io.h"
#include <errno.h>
#include <fcntl.h>
@@ -29,7 +29,7 @@
#include <android-base/thread_annotations.h>
-#include "config.h"
+#include "otafault/config.h"
static std::mutex filename_mutex;
static std::map<intptr_t, const char*> filename_cache GUARDED_BY(filename_mutex);
diff --git a/otafault/test.cpp b/otafault/test.cpp
index 60c40e099..63e2445af 100644
--- a/otafault/test.cpp
+++ b/otafault/test.cpp
@@ -20,7 +20,7 @@
#include <sys/types.h>
#include <unistd.h>
-#include "ota_io.h"
+#include "otafault/ota_io.h"
int main(int /* argc */, char** /* argv */) {
int fd = open("testdata/test.file", O_RDWR);