OLD | NEW |
(Empty) | |
| 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 '../tools/VisualBench', |
| 17 '../bench', |
| 18 '../gm', |
| 19 ], |
| 20 'sources': [ |
| 21 '<!@(python find.py ../tools/kilobench "*.cpp")', |
| 22 '../bench/Benchmark.cpp', |
| 23 '../tools/VisualBench/VisualSKPBench.cpp', |
| 24 ], |
| 25 |
| 26 'dependencies': [ |
| 27 'flags.gyp:flags', |
| 28 'jsoncpp.gyp:jsoncpp', |
| 29 'skia_lib.gyp:skia_lib', |
| 30 'tools.gyp:crash_handler', |
| 31 'tools.gyp:proc_stats', |
| 32 'tools.gyp:timer', |
| 33 ], |
| 34 }, |
| 35 ], |
| 36 } |
OLD | NEW |