Merge "Convert libpower from Android.mk to Android.bp"

This commit is contained in:
Treehugger Robot 2017-01-14 04:24:51 +00:00 committed by Gerrit Code Review
commit b9344a5773
2 changed files with 9 additions and 24 deletions

9
Android.bp Normal file
View file

@ -0,0 +1,9 @@
// Copyright 2006 The Android Open Source Project
cc_library {
name: "libpower",
srcs: ["power/power.c"],
export_include_dirs: ["include"],
shared_libs: ["libcutils"],
}

View file

@ -31,30 +31,6 @@ LOCAL_MODULE:= libhardware_legacy
include $(BUILD_SHARED_LIBRARY)
# static library for librpc
include $(CLEAR_VARS)
LOCAL_MODULE:= libpower
LOCAL_SRC_FILES += power/power.c
LOCAL_C_INCLUDES := $(LOCAL_PATH)/include
LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)/include
include $(BUILD_STATIC_LIBRARY)
# shared library for various HALs
include $(CLEAR_VARS)
LOCAL_MODULE := libpower
LOCAL_SRC_FILES := power/power.c
LOCAL_C_INCLUDES := $(LOCAL_PATH)/include
LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)/include
LOCAL_SHARED_LIBRARIES := libcutils
include $(BUILD_SHARED_LIBRARY)
# legacy_audio builds it's own set of libraries that aren't linked into
# hardware_legacy
include $(LEGACY_AUDIO_MAKEFILES)