1 # 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': [ 16 '../bench', 17 '../gm', 18 '../include/private', 19 '../src/core', 20 '../tools/VisualBench', 21 ], 22 'sources': [ 23 '<!@(python find.py ../tools/kilobench "*.cpp")', 24 '../bench/Benchmark.cpp', 25 '../tools/VisualBench/VisualSKPBench.cpp', 26 ], 27 'dependencies': [ 28 'flags.gyp:flags', 29 'gputest.gyp:skgputest', 30 'jsoncpp.gyp:jsoncpp', 31 'skia_lib.gyp:skia_lib', 32 'tools.gyp:crash_handler', 33 'tools.gyp:proc_stats', 34 'tools.gyp:resources', 35 'tools.gyp:timer', 36 ], 37 }, 38 ], 39 } 40