| 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 20 matching lines...) Expand all Loading... |
| 31 'includes': [ | 31 'includes': [ |
| 32 'bench.gypi', | 32 'bench.gypi', |
| 33 'gmslides.gypi', | 33 'gmslides.gypi', |
| 34 ], | 34 ], |
| 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 ], | 42 ], |
| 42 'includes': [ 'bench.gypi' ], | 43 'includes': [ 'bench.gypi' ], |
| 43 'dependencies': [ | 44 'dependencies': [ |
| 44 'flags.gyp:flags', | 45 'flags.gyp:flags', |
| 46 'jsoncpp.gyp:jsoncpp', |
| 47 'skia_lib.gyp:skia_lib', |
| 45 'tools.gyp:crash_handler', | 48 'tools.gyp:crash_handler', |
| 46 'tools.gyp:timer', | 49 'tools.gyp:timer', |
| 47 ], | 50 ], |
| 48 }, | 51 }, |
| 49 ], | 52 ], |
| 50 } | 53 } |
| OLD | NEW |