diff --git a/include/private/README b/libs/hwui/private/README similarity index 100% rename from include/private/README rename to libs/hwui/private/README diff --git a/include/private/hwui/DrawGlInfo.h b/libs/hwui/private/hwui/DrawGlInfo.h similarity index 100% rename from include/private/hwui/DrawGlInfo.h rename to libs/hwui/private/hwui/DrawGlInfo.h diff --git a/libs/storage/Android.bp b/libs/storage/Android.bp new file mode 100644 index 0000000000000..911bd1d25393f --- /dev/null +++ b/libs/storage/Android.bp @@ -0,0 +1,19 @@ +cc_library_static { + name: "libstorage", + + srcs: [ + "IMountServiceListener.cpp", + "IMountShutdownObserver.cpp", + "IObbActionListener.cpp", + "IMountService.cpp", + ], + + export_include_dirs: ["include"], + + cflags: [ + "-Wall", + "-Werror", + ], + + shared_libs: ["libbinder"], +} diff --git a/libs/storage/Android.mk b/libs/storage/Android.mk deleted file mode 100644 index d0eb6d4eb425a..0000000000000 --- a/libs/storage/Android.mk +++ /dev/null @@ -1,16 +0,0 @@ -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) diff --git a/include/storage/IMountService.h b/libs/storage/include/storage/IMountService.h similarity index 100% rename from include/storage/IMountService.h rename to libs/storage/include/storage/IMountService.h diff --git a/include/storage/IMountServiceListener.h b/libs/storage/include/storage/IMountServiceListener.h similarity index 100% rename from include/storage/IMountServiceListener.h rename to libs/storage/include/storage/IMountServiceListener.h diff --git a/include/storage/IMountShutdownObserver.h b/libs/storage/include/storage/IMountShutdownObserver.h similarity index 100% rename from include/storage/IMountShutdownObserver.h rename to libs/storage/include/storage/IMountShutdownObserver.h diff --git a/include/storage/IObbActionListener.h b/libs/storage/include/storage/IObbActionListener.h similarity index 100% rename from include/storage/IObbActionListener.h rename to libs/storage/include/storage/IObbActionListener.h