blob: 2d0ae22c53b2157f75dd12189c089ce67c230324 [file] [log] [blame]
joshualitt99f34062016-01-14 11:05:22 -08001# Copyright 2016 Google Inc.
2#
3# Use of this source code is governed by a BSD-style license that can be
4# found in the LICENSE file.
5# GYP file to build performance testbench.
6#
7{
8 'includes': [
9 'apptype_console.gypi',
10 ],
11 'targets': [
12 {
13 'target_name': 'kilobench',
14 'type': 'executable',
15 'include_dirs': [
joshualitt99f34062016-01-14 11:05:22 -080016 '../bench',
17 '../gm',
bungemanbf521ff2016-02-17 13:13:44 -080018 '../include/private',
joshualitteb60d672016-01-15 10:00:08 -080019 '../src/core',
20 '../tools/VisualBench',
joshualitt99f34062016-01-14 11:05:22 -080021 ],
22 'sources': [
23 '<!@(python find.py ../tools/kilobench "*.cpp")',
24 '../bench/Benchmark.cpp',
25 '../tools/VisualBench/VisualSKPBench.cpp',
26 ],
joshualitt99f34062016-01-14 11:05:22 -080027 'dependencies': [
28 'flags.gyp:flags',
joshualitteb60d672016-01-15 10:00:08 -080029 'gputest.gyp:skgputest',
joshualitt99f34062016-01-14 11:05:22 -080030 'jsoncpp.gyp:jsoncpp',
31 'skia_lib.gyp:skia_lib',
32 'tools.gyp:crash_handler',
33 'tools.gyp:proc_stats',
joshualitteb60d672016-01-15 10:00:08 -080034 'tools.gyp:resources',
joshualitt99f34062016-01-14 11:05:22 -080035 'tools.gyp:timer',
36 ],
37 },
38 ],
39}