aboutsummaryrefslogtreecommitdiffhomepage
path: root/gyp
diff options
context:
space:
mode:
Diffstat (limited to 'gyp')
-rw-r--r--gyp/everything.gyp7
-rw-r--r--gyp/kilobench.gyp41
-rw-r--r--gyp/most.gyp11
-rw-r--r--gyp/visualbench.gyp73
4 files changed, 0 insertions, 132 deletions
diff --git a/gyp/everything.gyp b/gyp/everything.gyp
index d0c933ca73..02a54747cb 100644
--- a/gyp/everything.gyp
+++ b/gyp/everything.gyp
@@ -33,13 +33,6 @@
'dependencies': [
'android_system.gyp:SampleApp_APK',
],
- 'conditions': [
- [ 'skia_gpu == 1', {
- 'dependencies': [
- 'android_system.gyp:VisualBench_APK',
- ],
- }],
- ],
}],
],
},
diff --git a/gyp/kilobench.gyp b/gyp/kilobench.gyp
deleted file mode 100644
index 8223547a7d..0000000000
--- a/gyp/kilobench.gyp
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 2016 Google Inc.
-#
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-# GYP file to build performance testbench.
-#
-{
- 'includes': [
- 'apptype_console.gypi',
- ],
- 'targets': [
- {
- 'target_name': 'kilobench',
- 'type': 'executable',
- 'include_dirs': [
- '../bench',
- '../gm',
- '../include/private',
- '../src/core',
- '../src/gpu',
- '../tools/VisualBench',
- ],
- 'sources': [
- '<!@(python find.py ../tools/kilobench "*.cpp")',
- '../bench/Benchmark.cpp',
- '../tools/VisualBench/VisualSKPBench.cpp',
- ],
- 'dependencies': [
- 'flags.gyp:flags',
- 'gpu.gyp:skgpu',
- 'gputest.gyp:skgputest',
- 'jsoncpp.gyp:jsoncpp',
- 'skia_lib.gyp:skia_lib',
- 'tools.gyp:crash_handler',
- 'tools.gyp:proc_stats',
- 'tools.gyp:resources',
- 'tools.gyp:timer',
- ],
- },
- ],
-}
diff --git a/gyp/most.gyp b/gyp/most.gyp
index 9e54732a25..47c0d804da 100644
--- a/gyp/most.gyp
+++ b/gyp/most.gyp
@@ -26,24 +26,15 @@
'pathops_unittest.gyp:*',
'pathops_skpclip.gyp:*',
'dm.gyp:dm',
- 'visualbench.gyp:visualbench',
'fuzz.gyp:fuzz',
- 'kilobench.gyp:kilobench',
'viewer.gyp:viewer',
],
'conditions': [
[ 'skia_gpu == 0', {
'dependencies!': [
- 'visualbench.gyp:visualbench',
- 'kilobench.gyp:kilobench',
'viewer.gyp:viewer',
]
}],
- [ 'skia_os != "android" and skia_os != "linux"', {
- 'dependencies!': [
- 'kilobench.gyp:kilobench',
- ],
- }],
[ 'skia_gpu == 0 or skia_os == "android"', {
'dependencies!': [
'example.gyp:HelloWorld',
@@ -58,7 +49,6 @@
'dependencies!': [
'example.gyp:HelloWorld',
'SampleApp.gyp:SampleApp',
- 'visualbench.gyp:visualbench',
],
'dependencies': ['iOSShell.gyp:iOSShell' ],
}],
@@ -82,7 +72,6 @@
'dependencies!': [
'example.gyp:HelloWorld',
'SampleApp.gyp:SampleApp',
- 'visualbench.gyp:visualbench',
]
}
],
diff --git a/gyp/visualbench.gyp b/gyp/visualbench.gyp
deleted file mode 100644
index fdf0efb379..0000000000
--- a/gyp/visualbench.gyp
+++ /dev/null
@@ -1,73 +0,0 @@
-# Copyright 2015 Google Inc.
-#
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-# GYP file to build visual bench tool
-{
- 'includes': [
- 'apptype_console.gypi',
- ],
- 'targets': [
- {
- 'target_name': 'visualbench',
- 'type': 'executable',
- 'includes' : [
- 'gmslides.gypi',
- ],
- 'include_dirs' : [
- '../bench',
- '../include/gpu',
- '../include/private',
- '../src/core',
- '../src/effects',
- '../src/gpu',
- '../src/images',
- '../src/image',
- '../src/pdf',
- ],
- 'sources': [
- '../gm/gm.cpp',
- '<!@(python find.py ../tools/VisualBench "*.cpp")',
- '<!@(python find.py ../tools/VisualBench "*.h")',
- '<!@(python find.py ../bench "*.cpp")',
- ],
- 'sources!': [
- '../bench/nanobench.cpp',
- '../bench/nanobenchAndroid.cpp',
- ],
- 'dependencies': [
- 'etc1.gyp:libetc1',
- 'flags.gyp:flags',
- 'jsoncpp.gyp:jsoncpp',
- 'gputest.gyp:skgputest',
- 'pdf.gyp:pdf',
- 'skia_lib.gyp:skia_lib',
- 'tools.gyp:proc_stats',
- 'tools.gyp:sk_tool_utils',
- 'tools.gyp:timer',
- 'tools.gyp:url_data_manager',
- 'views.gyp:views',
- ],
- 'conditions' : [
- [ 'skia_os == "android" and skia_use_sdl == 0', {
- 'dependencies': [
- 'android_deps.gyp:Android_VisualBench',
- 'android_deps.gyp:native_app_glue',
- ],
- 'link_settings': {
- 'libraries': [
- '-landroid',
- '-lGLESv2',
- '-lEGL',
- ],
- },
- }],
- [ 'skia_os == "android" and skia_use_sdl == 1', {
- 'dependencies': [
- 'android_deps.gyp:Android_EntryPoint',
- ],
- }],
- ],
- },
- ],
-}