aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar chudy@google.com <chudy@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-06-29 14:34:58 +0000
committerGravatar chudy@google.com <chudy@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-06-29 14:34:58 +0000
commitb6789115b74a17eceaa71c0e30e247bb886c12d2 (patch)
tree80ae6a93f4993713098b8ed2b06cde80cafd6f9b /Makefile
parent902ebe5eb41a350b766238b3b103c22fe9fc0fb5 (diff)
Add missing gyp dependencies for debugger
git-svn-id: http://skia.googlecode.com/svn/trunk@4405 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 7ad2106395..f4b459be0b 100644
--- a/Makefile
+++ b/Makefile
@@ -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