Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d7bf82eb authored by Tao Bao's avatar Tao Bao
Browse files

Remove the dead #include's in verifier.cpp.

A follow-up to commit 5e535014.
Also clean up Android.mk, since libverifier no longer needs anything
from libminui.

Test: mmma bootable/recovery
Test: recovery_component_test passes.
Change-Id: I1c11e4bbeef67ca34a2054debf1f5b280d509217
parent 90d3f20c
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -144,15 +144,12 @@ include $(BUILD_EXECUTABLE)
# libverifier (static library)
# ===============================
include $(CLEAR_VARS)
LOCAL_CLANG := true
LOCAL_MODULE := libverifier
LOCAL_MODULE_TAGS := tests
LOCAL_SRC_FILES := \
    asn1_decoder.cpp \
    verifier.cpp \
    ui.cpp
    verifier.cpp
LOCAL_STATIC_LIBRARIES := \
    libminui \
    libcrypto_utils \
    libcrypto \
    libbase
+0 −1
Original line number Diff line number Diff line
@@ -120,7 +120,6 @@ LOCAL_STATIC_LIBRARIES := \
    libupdater \
    libbootloader_message \
    libverifier \
    libminui \
    libotautil \
    libmounts \
    libdivsufsort \
+1 −3
Original line number Diff line number Diff line
@@ -21,8 +21,8 @@
#include <stdlib.h>
#include <string.h>

#include <functional>
#include <algorithm>
#include <functional>
#include <memory>

#include <android-base/logging.h>
@@ -31,9 +31,7 @@
#include <openssl/obj_mac.h>

#include "asn1_decoder.h"
#include "common.h"
#include "print_sha1.h"
#include "ui.h"

static constexpr size_t MiB = 1024 * 1024;