| 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 30 matching lines...) Expand all Loading... |
| 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', |
| 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 | |
| 52 # Experiment to see if LTCG is the key difference leading to Windows infin
ite loops. | |
| 53 'msvs_settings': { 'VCLinkerTool': { 'LinkTimeCodeGeneration': '0' } }, | |
| 54 }, | 51 }, |
| 55 ], | 52 ], |
| 56 } | 53 } |
| OLD | NEW |