diff options
author | Colin Cross <ccross@android.com> | 2016-12-15 07:29:24 +0000 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2016-12-15 07:29:24 +0000 |
commit | fe9ffc29ffe2ba321802871edf26b34cb903f1a7 (patch) | |
tree | 078b9c97e1d268d1b6f0e635066b2fbc373d9bfc /libs/storage | |
parent | e6120caf2a77943b64074cbf07879819d3127a9a (diff) | |
parent | 791d02818a6f6b8454b7a6baf9f6f150c0cc6a18 (diff) |
Convert libstorage to Android.bp am: 3ac2be93a9 am: f12ae4bed7
am: 791d02818a
Change-Id: I73bb8a7332a6ba9aebf413cf9f0889ff9d98a5de
Diffstat (limited to 'libs/storage')
-rw-r--r-- | libs/storage/Android.bp | 19 | ||||
-rw-r--r-- | libs/storage/Android.mk | 19 |
2 files changed, 19 insertions, 19 deletions
diff --git a/libs/storage/Android.bp b/libs/storage/Android.bp new file mode 100644 index 000000000000..911bd1d25393 --- /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 f8524e379599..000000000000 --- a/libs/storage/Android.mk +++ /dev/null @@ -1,19 +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_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)/include -LOCAL_C_INCLUDES := $(LOCAL_PATH)/include - -LOCAL_CFLAGS += -Wall -Werror - -LOCAL_SHARED_LIBRARIES := libbinder - -include $(BUILD_STATIC_LIBRARY) |