| 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 ], | 26 ], |
| 27 'dependencies': [ | 27 'dependencies': [ |
| 28 'etc1.gyp:libetc1', | 28 'etc1.gyp:libetc1', |
| 29 'flags.gyp:flags', | 29 'flags.gyp:flags', |
| 30 'jsoncpp.gyp:jsoncpp', | 30 'jsoncpp.gyp:jsoncpp', |
| 31 'pdf.gyp:pdf', | 31 'pdf.gyp:pdf', |
| 32 'skia_lib.gyp:skia_lib', | 32 'skia_lib.gyp:skia_lib', |
| 33 'tools.gyp:crash_handler', | 33 'tools.gyp:crash_handler', |
| 34 'tools.gyp:gm_expectations', | 34 'tools.gyp:gm_expectations', |
| 35 'tools.gyp:resources', | 35 'tools.gyp:resources', |
| 36 'tools.gyp:sk_tool_utils', |
| 36 ], | 37 ], |
| 37 'conditions': [ | 38 'conditions': [ |
| 38 ['skia_android_framework', { | 39 ['skia_android_framework', { |
| 39 'libraries': [ | 40 'libraries': [ |
| 40 '-lskia', | 41 '-lskia', |
| 41 ], | 42 ], |
| 42 }], | 43 }], |
| 43 ['skia_run_pdfviewer_in_gm or skia_poppler_enabled', { | 44 ['skia_run_pdfviewer_in_gm or skia_poppler_enabled', { |
| 44 'sources': [ | 45 'sources': [ |
| 45 '../src/utils/SkPDFRasterizer.cpp', | 46 '../src/utils/SkPDFRasterizer.cpp', |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 '../src/gpu', | 89 '../src/gpu', |
| 89 ], | 90 ], |
| 90 'dependencies': [ | 91 'dependencies': [ |
| 91 'gputest.gyp:skgputest', | 92 'gputest.gyp:skgputest', |
| 92 ], | 93 ], |
| 93 }], | 94 }], |
| 94 ], | 95 ], |
| 95 }, | 96 }, |
| 96 ], | 97 ], |
| 97 } | 98 } |
| OLD | NEW |