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

Commit 06c082ba authored by Felipe Leme's avatar Felipe Leme
Browse files

Moved libdumpstate.default back to Android.mk

When this module was moved to Android.bp it had no dependencies, but now
it depends on modules defined on Android.mk.

BUG: 26379932
BUG: 31636879
Test: m libdumpstate.default
Change-Id: I577ef5ca16738854dd03adf5d0b090ac10ef5d28
parent 1ace199e
Loading
Loading
Loading
Loading

cmds/dumpstate/Android.bp

deleted100644 → 0
+0 −6
Original line number Diff line number Diff line
cc_library_static {
    name: "libdumpstate.default",
    srcs: ["libdumpstate_default.cpp"],
    // TODO: should use libdumpstateheaders, but if fails with 'undefined'
    static_libs: ["libbase", "libziparchive", "libz"]
}
+11 −0
Original line number Diff line number Diff line
@@ -117,3 +117,14 @@ LOCAL_GENERATED_SOURCES += $(GEN)
LOCAL_PICKUP_FILES := $(dist_zip_root)

include $(BUILD_NATIVE_TEST)

# =======================#
# libdumpstate.default #
# =======================#
include $(CLEAR_VARS)

LOCAL_SRC_FILES := libdumpstate_default.cpp
LOCAL_MODULE := libdumpstate.default

LOCAL_STATIC_LIBRARIES := libdumpstateheaders
include $(BUILD_STATIC_LIBRARY)