You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.8 KiB
57 lines
1.8 KiB
7 months ago
|
#
|
||
|
# Ping Test Nanoapp Makefile
|
||
|
#
|
||
|
# Environment Checks ###########################################################
|
||
|
ifeq ($(CHRE_PREFIX),)
|
||
|
ifneq ($(ANDROID_BUILD_TOP),)
|
||
|
CHRE_PREFIX = $(ANDROID_BUILD_TOP)/system/chre
|
||
|
else
|
||
|
$(error "You must run 'lunch' to setup ANDROID_BUILD_TOP, or explicitly \
|
||
|
define the CHRE_PREFIX environment variable to point to the CHRE root \
|
||
|
directory.")
|
||
|
endif
|
||
|
endif
|
||
|
|
||
|
# Nanoapp Configuration ########################################################
|
||
|
|
||
|
NANOAPP_NAME = ping_test
|
||
|
NANOAPP_ID = 0x476f6f6754000007
|
||
|
NANOAPP_NAME_STRING = \"Ping\ Test\"
|
||
|
NANOAPP_VERSION = 0x00000001
|
||
|
|
||
|
NANOAPP_PATH = $(CHRE_PREFIX)/apps/test/common/ping_test
|
||
|
TEST_SHARED_PATH = $(CHRE_PREFIX)/apps/test/common/shared
|
||
|
|
||
|
# Protobuf Sources #############################################################
|
||
|
|
||
|
NANOPB_EXTENSION = nanopb
|
||
|
|
||
|
NANOPB_SRCS += $(NANOAPP_PATH)/../proto/ping_test.proto
|
||
|
NANOPB_SRCS += $(NANOAPP_PATH)/../proto/chre_test_common.proto
|
||
|
NANOPB_PROTO_PATH = $(NANOAPP_PATH)/../proto
|
||
|
NANOPB_INCLUDES = $(NANOPB_PROTO_PATH)
|
||
|
NANOPB_FLAGS += --proto_path=$(NANOPB_PROTO_PATH)
|
||
|
|
||
|
# Source Code ##################################################################
|
||
|
|
||
|
COMMON_SRCS += $(NANOAPP_PATH)/src/ping_test.cc
|
||
|
COMMON_SRCS += $(TEST_SHARED_PATH)/src/send_message.cc
|
||
|
COMMON_SRCS += $(CHRE_PREFIX)/util/nanoapp/callbacks.cc
|
||
|
|
||
|
# Compiler Flags ###############################################################
|
||
|
|
||
|
# Defines
|
||
|
COMMON_CFLAGS += -DNANOAPP_MINIMUM_LOG_LEVEL=CHRE_LOG_LEVEL_INFO
|
||
|
|
||
|
# Includes
|
||
|
COMMON_CFLAGS += -I$(TEST_SHARED_PATH)/inc
|
||
|
|
||
|
# Permission declarations ######################################################
|
||
|
|
||
|
# Use the audio compile-time flags to check permissions behavior
|
||
|
CHRE_NANOAPP_USES_AUDIO = true
|
||
|
|
||
|
# Makefile Includes ############################################################
|
||
|
|
||
|
include $(CHRE_PREFIX)/build/nanoapp/app.mk
|