aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar borenet@google.com <borenet@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-06-27 19:04:39 +0000
committerGravatar borenet@google.com <borenet@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-06-27 19:04:39 +0000
commitdd3d08ea8e3394da42e2dd9631ea5eccb3fb24b6 (patch)
treee796bbb47a0e73902877d6d6a08c7941bfcef6bc /Makefile
parent26344cfaffa6a78c545c3e2253ec26cc277f82c9 (diff)
When building for Android, package executables in APKs (trunk)
Review URL: https://codereview.appspot.com/6307101 git-svn-id: http://skia.googlecode.com/svn/trunk@4368 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index f206ccf7d8..7ad2106395 100644
--- a/Makefile
+++ b/Makefile
@@ -31,6 +31,10 @@ BUILDTYPE ?= Debug
CWD := $(shell pwd)
ALL_TARGETS := core SampleApp bench gm tests tools
+ifneq (,$(findstring skia_os=android, $(GYP_DEFINES)))
+ ALL_TARGETS += SkiaAndroidApp
+endif
+
# Default target. This must be listed before all other targets.
.PHONY: default
default: all