| OLD | NEW |
| 1 # Copyright 2016 Google Inc. | 1 # Copyright 2016 Google Inc. |
| 2 # | 2 # |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 # GYP file to build performance testbench. | 5 # GYP file to build performance testbench. |
| 6 # | 6 # |
| 7 { | 7 { |
| 8 'includes': [ | 8 'includes': [ |
| 9 'apptype_console.gypi', | 9 'apptype_console.gypi', |
| 10 ], | 10 ], |
| 11 'targets': [ | 11 'targets': [ |
| 12 { | 12 { |
| 13 'target_name': 'kilobench', | 13 'target_name': 'vulkanviewer', |
| 14 'type': 'executable', | 14 'type': 'executable', |
| 15 'include_dirs': [ | 15 'include_dirs': [ |
| 16 '../bench', | 16 '../bench', |
| 17 '../gm', | 17 '../gm', |
| 18 '../include/private', | 18 '../include/private', |
| 19 '../src/core', | 19 '../src/core', |
| 20 '../src/gpu', | |
| 21 '../tools/VisualBench', | |
| 22 ], | 20 ], |
| 23 'sources': [ | 21 'sources': [ |
| 24 '<!@(python find.py ../tools/kilobench "*.cpp")', | 22 '<!@(python find.py ../tools/vulkan "*.cpp")', |
| 25 '../bench/Benchmark.cpp', | |
| 26 '../tools/VisualBench/VisualSKPBench.cpp', | |
| 27 ], | 23 ], |
| 28 'dependencies': [ | 24 'dependencies': [ |
| 29 'flags.gyp:flags', | 25 'flags.gyp:flags', |
| 30 'gpu.gyp:skgpu', | |
| 31 'gputest.gyp:skgputest', | 26 'gputest.gyp:skgputest', |
| 32 'jsoncpp.gyp:jsoncpp', | 27 'jsoncpp.gyp:jsoncpp', |
| 33 'skia_lib.gyp:skia_lib', | 28 'skia_lib.gyp:skia_lib', |
| 34 'tools.gyp:crash_handler', | 29 'tools.gyp:crash_handler', |
| 35 'tools.gyp:proc_stats', | 30 'tools.gyp:proc_stats', |
| 36 'tools.gyp:resources', | 31 'tools.gyp:resources', |
| 37 'tools.gyp:timer', | 32 'tools.gyp:timer', |
| 38 ], | 33 ], |
| 39 }, | 34 }, |
| 40 ], | 35 ], |
| 41 } | 36 } |
| OLD | NEW |