aboutsummaryrefslogtreecommitdiffhomepage
path: root/gyp/visualbench.gyp
diff options
context:
space:
mode:
authorGravatar djsollen <djsollen@google.com>2016-05-27 05:39:29 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-05-27 05:39:29 -0700
commit41457927364d23ed363bc3ba25025f8a36f1b8d4 (patch)
treee736181097afaba91d7cca900650e0c1b314b514 /gyp/visualbench.gyp
parent93ca884879e3469b46d32c36deb7b46f2fff1c0c (diff)
Remove VisualBench and its Android implementation.
Diffstat (limited to 'gyp/visualbench.gyp')
-rw-r--r--gyp/visualbench.gyp73
1 files changed, 0 insertions, 73 deletions
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',
- ],
- }],
- ],
- },
- ],
-}