2016-01-14 19:05:22 +00:00
|
|
|
# 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',
|
2016-02-17 21:13:44 +00:00
|
|
|
'../include/private',
|
2016-01-15 18:00:08 +00:00
|
|
|
'../src/core',
|
2016-03-31 01:56:19 +00:00
|
|
|
'../src/gpu',
|
2016-01-15 18:00:08 +00:00
|
|
|
'../tools/VisualBench',
|
2016-01-14 19:05:22 +00:00
|
|
|
],
|
|
|
|
'sources': [
|
|
|
|
'<!@(python find.py ../tools/kilobench "*.cpp")',
|
|
|
|
'../bench/Benchmark.cpp',
|
|
|
|
'../tools/VisualBench/VisualSKPBench.cpp',
|
|
|
|
],
|
|
|
|
'dependencies': [
|
|
|
|
'flags.gyp:flags',
|
2016-03-31 01:56:19 +00:00
|
|
|
'gpu.gyp:skgpu',
|
2016-01-15 18:00:08 +00:00
|
|
|
'gputest.gyp:skgputest',
|
2016-01-14 19:05:22 +00:00
|
|
|
'jsoncpp.gyp:jsoncpp',
|
|
|
|
'skia_lib.gyp:skia_lib',
|
|
|
|
'tools.gyp:crash_handler',
|
|
|
|
'tools.gyp:proc_stats',
|
2016-01-15 18:00:08 +00:00
|
|
|
'tools.gyp:resources',
|
2016-01-14 19:05:22 +00:00
|
|
|
'tools.gyp:timer',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
}
|