Lines Matching refs:APP_DEBUG
34 # We set APP_DEBUG to <undefined>, 'true' or 'false'.
36 APP_DEBUG := $(strip $(NDK_DEBUG))
37 ifeq ($(APP_DEBUG),0)
38 APP_DEBUG:= false
40 ifeq ($(APP_DEBUG),1)
41 APP_DEBUG := true
43 ifdef APP_DEBUG
44 ifneq (,$(filter-out true false,$(APP_DEBUG)))
221 # - If APP_DEBUG is set to 'true', then it always should.
222 # - If APP_DEBUG is set to 'false', then it never should
225 ifdef APP_DEBUG
226 APP_DEBUGGABLE := $(APP_DEBUG)
228 ifeq ($(APP_DEBUG),true)