Stop building tests.
BUG=skia:
R=borenet@google.com, mtklein@google.com
Author: mtklein@chromium.org
Review URL: https://codereview.chromium.org/423073011
diff --git a/Makefile b/Makefile
index 1b15a74..f8ec875 100644
--- a/Makefile
+++ b/Makefile
@@ -7,12 +7,12 @@
# make clean
#
# # Build and run tests (in Debug mode)
-# make tests
-# out/Debug/tests
+# make dm
+# out/Debug/dm
#
# # Build and run tests (in Release mode)
-# make tests BUILDTYPE=Release
-# out/Release/tests
+# make dm BUILDTYPE=Release
+# out/Release/dm
#
# # Build bench and SampleApp (both in Release mode), and then run them
# make SampleApp bench BUILDTYPE=Release
@@ -53,7 +53,6 @@
skhello \
skia_lib \
skpskgr_test \
- tests \
tools \
skpdiff
diff --git a/gyp/most.gyp b/gyp/most.gyp
index 6c791b7..e22629a 100644
--- a/gyp/most.gyp
+++ b/gyp/most.gyp
@@ -18,7 +18,6 @@
'bench.gyp:*',
'gm.gyp:gm',
'SampleApp.gyp:SampleApp',
- 'tests.gyp:tests',
'tools.gyp:tools',
'pathops_unittest.gyp:*',
'pathops_skpclip.gyp:*',
diff --git a/gyp/tests.gyp b/gyp/tests.gyp
deleted file mode 100644
index 155207e..0000000
--- a/gyp/tests.gyp
+++ /dev/null
@@ -1,36 +0,0 @@
-# GYP file to build unit tests.
-{
- 'includes': [
- 'apptype_console.gypi',
- ],
- 'targets': [
- {
- 'target_name': 'tests',
- 'type': 'executable',
- 'includes': [
- 'pathops_unittest.gypi',
- 'tests.gypi',
- ],
- 'dependencies': [ 'tools.gyp:crash_handler' ],
- 'sources': [
- '../tests/skia_test.cpp',
- ],
- 'conditions': [
- [ 'skia_android_framework == 1', {
- 'libraries': [
- '-lskia',
- ],
- 'libraries!': [
- '-lz',
- '-llog',
- ],
- }],
- [ 'skia_gpu == 1', {
- 'include_dirs': [
- '../src/gpu',
- ],
- }],
- ],
- },
- ],
-}