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

Commit c2f9ae35 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge changes I4968d5aa,Ieb34d79a,Idc073536

* changes:
  Move hwui private headers to frameworks/base/libs/hwui/private
  Convert libstorage to Android.bp
  Move libstorage includes into frameworks/base/lib/storage
parents 618d4215 19def994
Loading
Loading
Loading
Loading
+0 −0

File moved.

+19 −0
Original line number Diff line number Diff line
cc_library_static {
    name: "libstorage",

    srcs: [
        "IMountServiceListener.cpp",
        "IMountShutdownObserver.cpp",
        "IObbActionListener.cpp",
        "IMountService.cpp",
    ],

    export_include_dirs: ["include"],

    cflags: [
        "-Wall",
        "-Werror",
    ],

    shared_libs: ["libbinder"],
}

libs/storage/Android.mk

deleted100644 → 0
+0 −16
Original line number Diff line number Diff line
LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)

LOCAL_SRC_FILES:= \
	IMountServiceListener.cpp \
	IMountShutdownObserver.cpp \
	IObbActionListener.cpp \
	IMountService.cpp

LOCAL_MODULE:= libstorage

LOCAL_CFLAGS += -Wall -Werror

LOCAL_SHARED_LIBRARIES := libbinder

include $(BUILD_STATIC_LIBRARY)
Loading