Merge "libprocessgroup: Android.mk -> Android.bp"

This commit is contained in:
Treehugger Robot 2017-04-19 23:29:19 +00:00 committed by Gerrit Code Review
commit 9401a0b9d1
2 changed files with 10 additions and 19 deletions

View File

@ -0,0 +1,10 @@
cc_library {
srcs: ["processgroup.cpp"],
name: "libprocessgroup",
shared_libs: ["libbase"],
export_include_dirs: ["include"],
cflags: [
"-Wall",
"-Werror",
],
}

View File

@ -1,19 +0,0 @@
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_SRC_FILES := processgroup.cpp
LOCAL_MODULE := libprocessgroup
LOCAL_STATIC_LIBRARIES := libbase
LOCAL_C_INCLUDES := $(LOCAL_PATH)/include
LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)/include
LOCAL_CFLAGS := -Wall -Werror
include $(BUILD_STATIC_LIBRARY)
include $(CLEAR_VARS)
LOCAL_SRC_FILES := processgroup.cpp
LOCAL_MODULE := libprocessgroup
LOCAL_SHARED_LIBRARIES := libbase
LOCAL_C_INCLUDES := $(LOCAL_PATH)/include
LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)/include
LOCAL_CFLAGS := -Wall -Werror
include $(BUILD_SHARED_LIBRARY)