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.
65 lines
2.1 KiB
65 lines
2.1 KiB
#
|
|
# Permission 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 = permission_test
|
|
NANOAPP_ID = 0x476f6f6754000009
|
|
NANOAPP_NAME_STRING = \"Permission\ Test\"
|
|
NANOAPP_VERSION = 0x00000001
|
|
|
|
NANOAPP_PATH = $(CHRE_PREFIX)/apps/test/common/permission_test
|
|
TEST_SHARED_PATH = $(CHRE_PREFIX)/apps/test/common/shared
|
|
|
|
# Protobuf Sources #############################################################
|
|
|
|
NANOPB_EXTENSION = nanopb
|
|
|
|
NANOPB_SRCS += $(NANOAPP_PATH)/../proto/chre_test_common.proto
|
|
NANOPB_SRCS += $(NANOAPP_PATH)/../proto/permission_test.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/permission_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
|
|
|
|
# DO NOT USE. This macro is only meant to be used in this test nanoapp and
|
|
# should never be used in production nanoapps. Please use the
|
|
# CHRE_NANOAPP_USES_X macros there instead to ensure the right permissions are
|
|
# declared.
|
|
COMMON_CFLAGS += -DCHRE_TEST_NANOAPP_PERMS=0
|
|
|
|
# Permission declarations ######################################################
|
|
|
|
CHRE_NANOAPP_USES_AUDIO = true
|
|
CHRE_NANOAPP_USES_GNSS = true
|
|
CHRE_NANOAPP_USES_WIFI = true
|
|
CHRE_NANOAPP_USES_WWAN = true
|
|
|
|
# Makefile Includes ############################################################
|
|
|
|
include $(CHRE_PREFIX)/build/nanoapp/app.mk
|