mirror of
https://github.com/team-infusion-developers/android_hardware_samsung.git
synced 2024-11-06 21:55:41 +00:00
loki_tool: convert to blueprint
Change-Id: Id35492c9f671c265d4b637eb4d536e812f48282b
This commit is contained in:
parent
fd91e5c17e
commit
01a9401350
3 changed files with 15 additions and 22 deletions
|
@ -35,11 +35,6 @@ include $(SAM_ROOT)/macloader/Android.mk
|
|||
include $(SAM_ROOT)/wifiloader/Android.mk
|
||||
endif
|
||||
|
||||
# Loki
|
||||
ifeq ($(strip $(TARGET_NEEDS_LOKI)),true)
|
||||
include $(SAM_ROOT)/loki_tool/Android.mk
|
||||
endif
|
||||
|
||||
ifeq ($(BOARD_VENDOR),samsung)
|
||||
include $(SAM_ROOT)/AdvancedDisplay/Android.mk
|
||||
include $(SAM_ROOT)/audio/Android.mk
|
||||
|
|
15
loki_tool/Android.bp
Normal file
15
loki_tool/Android.bp
Normal file
|
@ -0,0 +1,15 @@
|
|||
cc_binary_host {
|
||||
name: "loki_tool",
|
||||
cflags: [
|
||||
"-Wno-pointer-arith",
|
||||
"-Wno-unused-result",
|
||||
"-Wno-sign-compare",
|
||||
],
|
||||
srcs: [
|
||||
"loki_flash.c",
|
||||
"loki_patch.c",
|
||||
"loki_find.c",
|
||||
"loki_unlok.c",
|
||||
"main.c",
|
||||
],
|
||||
}
|
|
@ -1,17 +0,0 @@
|
|||
LOCAL_PATH := $(call my-dir)
|
||||
|
||||
# build static binary
|
||||
include $(CLEAR_VARS)
|
||||
LOCAL_CFLAGS := -Wno-pointer-arith -Wno-unused-result -Wno-sign-compare
|
||||
LOCAL_SRC_FILES := loki_flash.c loki_patch.c loki_find.c loki_unlok.c main.c
|
||||
LOCAL_MODULE := loki_tool_static
|
||||
LOCAL_MODULE_STEM := loki_tool
|
||||
LOCAL_FORCE_STATIC_EXECUTABLE := true
|
||||
include $(BUILD_EXECUTABLE)
|
||||
|
||||
# build host binary
|
||||
include $(CLEAR_VARS)
|
||||
LOCAL_CFLAGS := -Wno-pointer-arith -Wno-unused-result -Wno-sign-compare
|
||||
LOCAL_SRC_FILES := loki_flash.c loki_patch.c loki_find.c loki_unlok.c main.c
|
||||
LOCAL_MODULE := loki_tool
|
||||
include $(BUILD_HOST_EXECUTABLE)
|
Loading…
Reference in a new issue