diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -35,6 +35,10 @@ ifneq (,$(findstring skia_os=android, $(GYP_DEFINES))) ALL_TARGETS += SkiaAndroidApp endif +ifneq (,$(findstring skia_debugger=on, $(GYP_DEFINES))) + ALL_TARGETS += debugger +endif + # Default target. This must be listed before all other targets. .PHONY: default default: all @@ -101,4 +105,4 @@ else ifneq (,$(findstring Darwin, $(uname))) else echo "unknown platform $(uname)" exit 1 -endif
\ No newline at end of file +endif |