From e4f1ec315d7fb8835c3d29ebda283dd840ae1a1f Mon Sep 17 00:00:00 2001 From: Jin Qian Date: Tue, 15 Aug 2017 16:26:53 -0700 Subject: [PATCH] storaged: convert Android.mk to Android.bp Change-Id: Ia59f6cc94f0eaea531a8e516b0492e0dfecc6ce0 --- storaged/Android.bp | 80 +++++++++++++++++++++++++++++++++++++++ storaged/Android.mk | 44 --------------------- storaged/tests/Android.mk | 45 ---------------------- 3 files changed, 80 insertions(+), 89 deletions(-) create mode 100644 storaged/Android.bp delete mode 100644 storaged/Android.mk delete mode 100644 storaged/tests/Android.mk diff --git a/storaged/Android.bp b/storaged/Android.bp new file mode 100644 index 000000000..f8b0333da --- /dev/null +++ b/storaged/Android.bp @@ -0,0 +1,80 @@ +/* + * Copyright (C) 2017 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +cc_defaults { + name: "storaged_defaults", + + shared_libs: [ + "libbase", + "libbatteryservice", + "libbinder", + "libcutils", + "liblog", + "libsysutils", + "libutils", + ], + + cflags: [ + "-Wall", + "-Werror", + "-Wextra", + "-Wno-unused-parameter" + ], +} + +cc_library_static { + name: "libstoraged", + + defaults: ["storaged_defaults"], + + srcs: [ + "storaged.cpp", + "storaged_info.cpp", + "storaged_service.cpp", + "storaged_utils.cpp", + "storaged_uid_monitor.cpp", + ], + + logtags: ["EventLogTags.logtags"], + + export_include_dirs: ["include"], +} + +cc_binary { + name: "storaged", + + defaults: ["storaged_defaults"], + + init_rc: ["storaged.rc"], + + srcs: ["main.cpp"], + + static_libs: ["libstoraged"], +} + +/* + * Run with: + * adb shell /data/nativetest/storaged-unit-tests/storaged-unit-tests + */ +cc_test { + name: "storaged-unit-tests", + + defaults: ["storaged_defaults"], + + srcs: ["tests/storaged_test.cpp"], + + static_libs: ["libstoraged"], +} \ No newline at end of file diff --git a/storaged/Android.mk b/storaged/Android.mk deleted file mode 100644 index a1abe0fd1..000000000 --- a/storaged/Android.mk +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 2016 The Android Open Source Project - -LOCAL_PATH := $(call my-dir) - -LIBSTORAGED_SHARED_LIBRARIES := \ - libbinder \ - libbase \ - libutils \ - libcutils \ - liblog \ - libsysutils \ - libbatteryservice \ - -include $(CLEAR_VARS) - -LOCAL_SRC_FILES := \ - storaged.cpp \ - storaged_info.cpp \ - storaged_service.cpp \ - storaged_utils.cpp \ - storaged_uid_monitor.cpp \ - EventLogTags.logtags - -LOCAL_MODULE := libstoraged -LOCAL_CFLAGS := -Werror -LOCAL_C_INCLUDES := $(LOCAL_PATH)/include external/googletest/googletest/include -LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)/include -LOCAL_SHARED_LIBRARIES := $(LIBSTORAGED_SHARED_LIBRARIES) -include $(BUILD_STATIC_LIBRARY) - -include $(CLEAR_VARS) - -LOCAL_MODULE := storaged -LOCAL_INIT_RC := storaged.rc -LOCAL_SRC_FILES := main.cpp -# libstoraged is an internal static library, only main.cpp and storaged_test.cpp should be using it -LOCAL_STATIC_LIBRARIES := libstoraged -LOCAL_SHARED_LIBRARIES := $(LIBSTORAGED_SHARED_LIBRARIES) -LOCAL_CFLAGS := -Wall -Werror -Wno-unused-parameter -LOCAL_C_INCLUDES := external/googletest/googletest/include - -include $(BUILD_EXECUTABLE) - -include $(call first-makefiles-under,$(LOCAL_PATH)) diff --git a/storaged/tests/Android.mk b/storaged/tests/Android.mk deleted file mode 100644 index 26d04b162..000000000 --- a/storaged/tests/Android.mk +++ /dev/null @@ -1,45 +0,0 @@ -# -# Copyright (C) 2014 The Android Open Source Project -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# - -LOCAL_PATH := $(call my-dir) - -test_module_prefix := storaged- -test_tags := tests - -# ----------------------------------------------------------------------------- -# Unit tests. -# ----------------------------------------------------------------------------- - -test_c_flags := \ - -fstack-protector-all \ - -g \ - -Wall -Wextra \ - -Werror \ - -fno-builtin \ - -test_src_files := \ - storaged_test.cpp \ - -# Build tests for the logger. Run with: -# adb shell /data/nativetest/storaged-unit-tests/storaged-unit-tests -include $(CLEAR_VARS) -LOCAL_MODULE := $(test_module_prefix)unit-tests -LOCAL_MODULE_TAGS := $(test_tags) -LOCAL_CFLAGS += $(test_c_flags) -LOCAL_STATIC_LIBRARIES := libstoraged -LOCAL_SHARED_LIBRARIES := libbase libcutils liblog libpackagelistparser -LOCAL_SRC_FILES := $(test_src_files) -include $(BUILD_NATIVE_TEST)