aboutsummaryrefslogtreecommitdiffhomepage
path: root/platform_tools/android/gyp_gen/makefile_writer.py
diff options
context:
space:
mode:
Diffstat (limited to 'platform_tools/android/gyp_gen/makefile_writer.py')
-rw-r--r--platform_tools/android/gyp_gen/makefile_writer.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/platform_tools/android/gyp_gen/makefile_writer.py b/platform_tools/android/gyp_gen/makefile_writer.py
index 6641f7f973..e60ce5b044 100644
--- a/platform_tools/android/gyp_gen/makefile_writer.py
+++ b/platform_tools/android/gyp_gen/makefile_writer.py
@@ -114,14 +114,17 @@ DEBUGGING_HELP = (
SKIA_TOOLS = (
"""
#############################################################
-# Build the skia tools
+# Build the skia tools (except in the PDK build)
#
+ifneq ($(TARGET_BUILD_PDK),true)
# benchmark (timings)
include $(BASE_PATH)/bench/Android.mk
# diamond-master (one test to rule them all)
include $(BASE_PATH)/dm/Android.mk
+
+endif # disable for PDK
"""
)