| 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 19 matching lines...) Expand all Loading... |
| 30 ], | 30 ], |
| 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/GMBench.cpp', |
| 41 '../bench/ResultsWriter.cpp', |
| 40 '../bench/nanobench.cpp', | 42 '../bench/nanobench.cpp', |
| 41 '../bench/ResultsWriter.cpp', | |
| 42 ], | 43 ], |
| 43 'includes': [ 'bench.gypi' ], | 44 'includes': [ |
| 45 'bench.gypi', |
| 46 'gmslides.gypi', |
| 47 ], |
| 44 'dependencies': [ | 48 'dependencies': [ |
| 45 'flags.gyp:flags_common', | 49 'flags.gyp:flags_common', |
| 46 'jsoncpp.gyp:jsoncpp', | 50 'jsoncpp.gyp:jsoncpp', |
| 47 'skia_lib.gyp:skia_lib', | 51 'skia_lib.gyp:skia_lib', |
| 48 'tools.gyp:crash_handler', | 52 'tools.gyp:crash_handler', |
| 49 'tools.gyp:timer', | 53 'tools.gyp:timer', |
| 50 ], | 54 ], |
| 51 }, | 55 }, |
| 52 ], | 56 ], |
| 53 } | 57 } |
| OLD | NEW |