| 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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 'gm.gyp:gm_expectations', | 58 'gm.gyp:gm_expectations', |
| 59 'jsoncpp.gyp:jsoncpp', | 59 'jsoncpp.gyp:jsoncpp', |
| 60 'pdf.gyp:pdf', | 60 'pdf.gyp:pdf', |
| 61 ], | 61 ], |
| 62 'conditions': [ | 62 'conditions': [ |
| 63 ['skia_run_pdfviewer_in_gm', { | 63 ['skia_run_pdfviewer_in_gm', { |
| 64 'defines': [ | 64 'defines': [ |
| 65 'SK_BUILD_NATIVE_PDF_RENDERER', | 65 'SK_BUILD_NATIVE_PDF_RENDERER', |
| 66 ], | 66 ], |
| 67 'include_dirs' : [ | 67 'include_dirs' : [ |
| 68 '../experimental/PdfViewer', | 68 '../experimental/PdfViewer/inc', |
| 69 ], | 69 ], |
| 70 'dependencies': [ | 70 'dependencies': [ |
| 71 'pdfviewer_lib.gyp:pdfviewer_lib', | 71 'pdfviewer_lib.gyp:pdfviewer_lib', |
| 72 ], | 72 ], |
| 73 }], | 73 }], |
| 74 ['skia_os in ["linux", "mac", "win"]', { | 74 ['skia_os in ["linux", "mac", "win"]', { |
| 75 'dependencies': [ | 75 'dependencies': [ |
| 76 'poppler.gyp:libpoppler-cpp-gpl', | 76 'poppler.gyp:libpoppler-cpp-gpl', |
| 77 ], | 77 ], |
| 78 'sources': [ | 78 'sources': [ |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 ], | 112 ], |
| 113 }, | 113 }, |
| 114 ], | 114 ], |
| 115 } | 115 } |
| 116 | 116 |
| 117 # Local Variables: | 117 # Local Variables: |
| 118 # tab-width:2 | 118 # tab-width:2 |
| 119 # indent-tabs-mode:nil | 119 # indent-tabs-mode:nil |
| 120 # End: | 120 # End: |
| 121 # vim: set expandtab tabstop=2 shiftwidth=2: | 121 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |