Convert libpower from Android.mk to Android.bp

See build/soong/README.md for more information.

Test: builds
Change-Id: I4cc68e4bbe65abe741c02448aa7f42fdfd5804fa
This commit is contained in:
Colin Cross 2016-11-08 10:17:11 -08:00
parent 6d26bb0360
commit d945d77458
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)