storaged: convert Android.mk to Android.bp

Change-Id: Ia59f6cc94f0eaea531a8e516b0492e0dfecc6ce0
This commit is contained in:
Jin Qian 2017-08-15 16:26:53 -07:00
parent cc03b938b0
commit e4f1ec315d
3 changed files with 80 additions and 89 deletions

80
storaged/Android.bp Normal file
View file

@ -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"],
}

View file

@ -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))

View file

@ -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)