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