aboutsummaryrefslogtreecommitdiffhomepage
path: root/gyp
diff options
context:
space:
mode:
authorGravatar mtklein <mtklein@chromium.org>2014-08-04 09:36:16 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2014-08-04 09:36:16 -0700
commite7ce26d360a5ca36085be2bbb2cee8b62a0ed935 (patch)
tree91506f665f858e3084f82f21230d9c3ef20556c8 /gyp
parent01c8da1eef36570374f7e8764a38b25bf16ab7a6 (diff)
Stop building tests.
BUG=skia: R=borenet@google.com, mtklein@google.com Author: mtklein@chromium.org Review URL: https://codereview.chromium.org/423073011
Diffstat (limited to 'gyp')
-rw-r--r--gyp/most.gyp1
-rw-r--r--gyp/tests.gyp36
2 files changed, 0 insertions, 37 deletions
diff --git a/gyp/most.gyp b/gyp/most.gyp
index 6c791b7881..e22629ae74 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 155207ed6f..0000000000
--- 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',
- ],
- }],
- ],
- },
- ],
-}