| OLD | NEW |
| 1 # GYP file to build the "gm" (golden master) executable. | 1 # GYP file to build the "gm" (golden master) executable. |
| 2 { | 2 { |
| 3 'includes': [ | 3 'includes': [ |
| 4 'apptype_console.gypi', | 4 'apptype_console.gypi', |
| 5 ], | 5 ], |
| 6 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'gm', | 8 'target_name': 'gm', |
| 9 'type': 'executable', | 9 'type': 'executable', |
| 10 'include_dirs' : [ | 10 'include_dirs' : [ |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 '../src/pipe/utils/SamplePipeControllers.cpp', | 26 '../src/pipe/utils/SamplePipeControllers.cpp', |
| 27 ], | 27 ], |
| 28 'dependencies': [ | 28 'dependencies': [ |
| 29 'etc1.gyp:libetc1', | 29 'etc1.gyp:libetc1', |
| 30 'flags.gyp:flags', | 30 'flags.gyp:flags', |
| 31 'jsoncpp.gyp:jsoncpp', | 31 'jsoncpp.gyp:jsoncpp', |
| 32 'pdf.gyp:pdf', | 32 'pdf.gyp:pdf', |
| 33 'skia_lib.gyp:skia_lib', | 33 'skia_lib.gyp:skia_lib', |
| 34 'tools.gyp:crash_handler', | 34 'tools.gyp:crash_handler', |
| 35 'tools.gyp:gm_expectations', | 35 'tools.gyp:gm_expectations', |
| 36 'tools.gyp:proc_stats', |
| 36 'tools.gyp:resources', | 37 'tools.gyp:resources', |
| 37 'tools.gyp:sk_tool_utils', | 38 'tools.gyp:sk_tool_utils', |
| 38 ], | 39 ], |
| 39 'conditions': [ | 40 'conditions': [ |
| 40 ['skia_android_framework', { | 41 ['skia_android_framework', { |
| 41 'libraries': [ | 42 'libraries': [ |
| 42 '-lskia', | 43 '-lskia', |
| 43 ], | 44 ], |
| 44 }], | 45 }], |
| 45 ['skia_run_pdfviewer_in_gm or skia_poppler_enabled', { | 46 ['skia_run_pdfviewer_in_gm or skia_poppler_enabled', { |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 '../src/gpu', | 91 '../src/gpu', |
| 91 ], | 92 ], |
| 92 'dependencies': [ | 93 'dependencies': [ |
| 93 'gputest.gyp:skgputest', | 94 'gputest.gyp:skgputest', |
| 94 ], | 95 ], |
| 95 }], | 96 }], |
| 96 ], | 97 ], |
| 97 }, | 98 }, |
| 98 ], | 99 ], |
| 99 } | 100 } |
| OLD | NEW |