Home | History | Annotate | Download | only in core

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)))
218 # - If APP_DEBUG is set to 'true', then it always should.
219 # - If APP_DEBUG is set to 'false', then it never should
222 ifdef APP_DEBUG
223 APP_DEBUGGABLE := $(APP_DEBUG)
225 ifeq ($(APP_DEBUG),true)