| 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_expectations', | 8 'target_name': 'gm_expectations', |
| 9 'type': 'static_library', | 9 'type': 'static_library', |
| 10 'include_dirs' : [ | 10 'include_dirs' : [ |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 'skia_lib.gyp:skia_lib', | 48 'skia_lib.gyp:skia_lib', |
| 49 'flags.gyp:flags', | 49 'flags.gyp:flags', |
| 50 'gm.gyp:gm_expectations', | 50 'gm.gyp:gm_expectations', |
| 51 'jsoncpp.gyp:jsoncpp', | 51 'jsoncpp.gyp:jsoncpp', |
| 52 'pdf.gyp:pdf', | 52 'pdf.gyp:pdf', |
| 53 ], | 53 ], |
| 54 'conditions': [ | 54 'conditions': [ |
| 55 ['skia_android_framework', { | 55 ['skia_android_framework', { |
| 56 'libraries': [ | 56 'libraries': [ |
| 57 '-lskia', | 57 '-lskia', |
| 58 '-lcutils', | |
| 59 ], | 58 ], |
| 60 }], | 59 }], |
| 61 ['skia_run_pdfviewer_in_gm or skia_poppler_enabled', { | 60 ['skia_run_pdfviewer_in_gm or skia_poppler_enabled', { |
| 62 'sources': [ | 61 'sources': [ |
| 63 '../src/utils/SkPDFRasterizer.cpp', | 62 '../src/utils/SkPDFRasterizer.cpp', |
| 64 ], | 63 ], |
| 65 }], | 64 }], |
| 66 ['skia_run_pdfviewer_in_gm', { | 65 ['skia_run_pdfviewer_in_gm', { |
| 67 'defines': [ | 66 'defines': [ |
| 68 'SK_BUILD_NATIVE_PDF_RENDERER', | 67 'SK_BUILD_NATIVE_PDF_RENDERER', |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 '../src/gpu', | 105 '../src/gpu', |
| 107 ], | 106 ], |
| 108 'dependencies': [ | 107 'dependencies': [ |
| 109 'gputest.gyp:skgputest', | 108 'gputest.gyp:skgputest', |
| 110 ], | 109 ], |
| 111 }], | 110 }], |
| 112 ], | 111 ], |
| 113 }, | 112 }, |
| 114 ], | 113 ], |
| 115 } | 114 } |
| OLD | NEW |