Merge "Remove the dead #include's in verifier.cpp." am: 64d25024b9

am: b2617e882e

Change-Id: I8b99bd307e38e4dc4a477bf3ae2bd89495434507
This commit is contained in:
Tao Bao
2017-03-20 16:28:24 +00:00
committed by android-build-merger
3 changed files with 2 additions and 8 deletions
+1 -4
View File
@@ -144,15 +144,12 @@ include $(BUILD_EXECUTABLE)
# libverifier (static library) # libverifier (static library)
# =============================== # ===============================
include $(CLEAR_VARS) include $(CLEAR_VARS)
LOCAL_CLANG := true
LOCAL_MODULE := libverifier LOCAL_MODULE := libverifier
LOCAL_MODULE_TAGS := tests LOCAL_MODULE_TAGS := tests
LOCAL_SRC_FILES := \ LOCAL_SRC_FILES := \
asn1_decoder.cpp \ asn1_decoder.cpp \
verifier.cpp \ verifier.cpp
ui.cpp
LOCAL_STATIC_LIBRARIES := \ LOCAL_STATIC_LIBRARIES := \
libminui \
libcrypto_utils \ libcrypto_utils \
libcrypto \ libcrypto \
libbase libbase
-1
View File
@@ -120,7 +120,6 @@ LOCAL_STATIC_LIBRARIES := \
libupdater \ libupdater \
libbootloader_message \ libbootloader_message \
libverifier \ libverifier \
libminui \
libotautil \ libotautil \
libmounts \ libmounts \
libdivsufsort \ libdivsufsort \
+1 -3
View File
@@ -21,8 +21,8 @@
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
#include <functional>
#include <algorithm> #include <algorithm>
#include <functional>
#include <memory> #include <memory>
#include <android-base/logging.h> #include <android-base/logging.h>
@@ -31,9 +31,7 @@
#include <openssl/obj_mac.h> #include <openssl/obj_mac.h>
#include "asn1_decoder.h" #include "asn1_decoder.h"
#include "common.h"
#include "print_sha1.h" #include "print_sha1.h"
#include "ui.h"
static constexpr size_t MiB = 1024 * 1024; static constexpr size_t MiB = 1024 * 1024;