| OLD | NEW |
| 1 # GYP file to build performance testbench. | 1 # GYP file to build performance testbench. |
| 2 # | 2 # |
| 3 { | 3 { |
| 4 'includes': [ | 4 'includes': [ |
| 5 'apptype_console.gypi', | 5 'apptype_console.gypi', |
| 6 ], | 6 ], |
| 7 'targets': [ | 7 'targets': [ |
| 8 { | 8 { |
| 9 'target_name': 'bench', | 9 'target_name': 'bench', |
| 10 'type': 'executable', | 10 'type': 'executable', |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 }, | 35 }, |
| 36 { | 36 { |
| 37 'target_name': 'nanobench', | 37 'target_name': 'nanobench', |
| 38 'type': 'executable', | 38 'type': 'executable', |
| 39 'sources': [ | 39 'sources': [ |
| 40 '../bench/nanobench.cpp', | 40 '../bench/nanobench.cpp', |
| 41 '../bench/ResultsWriter.cpp', | 41 '../bench/ResultsWriter.cpp', |
| 42 ], | 42 ], |
| 43 'includes': [ 'bench.gypi' ], | 43 'includes': [ 'bench.gypi' ], |
| 44 'dependencies': [ | 44 'dependencies': [ |
| 45 'flags.gyp:flags', | 45 'flags.gyp:flags_common', |
| 46 'jsoncpp.gyp:jsoncpp', | 46 'jsoncpp.gyp:jsoncpp', |
| 47 'skia_lib.gyp:skia_lib', | 47 'skia_lib.gyp:skia_lib', |
| 48 'tools.gyp:crash_handler', | 48 'tools.gyp:crash_handler', |
| 49 'tools.gyp:timer', | 49 'tools.gyp:timer', |
| 50 ], | 50 ], |
| 51 }, | 51 }, |
| 52 ], | 52 ], |
| 53 } | 53 } |
| OLD | NEW |