| 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 12 matching lines...) Expand all Loading... |
| 23 '../gm/', | 23 '../gm/', |
| 24 ], | 24 ], |
| 25 }, | 25 }, |
| 26 }, | 26 }, |
| 27 { | 27 { |
| 28 'target_name': 'gm', | 28 'target_name': 'gm', |
| 29 'type': 'executable', | 29 'type': 'executable', |
| 30 'include_dirs' : [ | 30 'include_dirs' : [ |
| 31 '../src/core', | 31 '../src/core', |
| 32 '../src/images', | 32 '../src/images', |
| 33 '../src/lazy', | |
| 34 '../src/effects', | 33 '../src/effects', |
| 35 '../src/pipe/utils/', | 34 '../src/pipe/utils/', |
| 36 '../src/utils/', | 35 '../src/utils/', |
| 37 '../src/utils/debugger', | |
| 38 ], | 36 ], |
| 39 'includes': [ | 37 'includes': [ |
| 40 'gmslides.gypi', | 38 'gmslides.gypi', |
| 41 ], | 39 ], |
| 42 'sources': [ | 40 'sources': [ |
| 43 '../gm/gm.cpp', | |
| 44 '../gm/gmmain.cpp', | 41 '../gm/gmmain.cpp', |
| 45 '../gm/system_preferences_default.cpp', | 42 '../gm/system_preferences_default.cpp', |
| 46 | 43 |
| 47 '../src/pipe/utils/SamplePipeControllers.h', | 44 '../src/pipe/utils/SamplePipeControllers.h', |
| 48 '../src/pipe/utils/SamplePipeControllers.cpp', | 45 '../src/pipe/utils/SamplePipeControllers.cpp', |
| 49 | |
| 50 '../src/utils/debugger/SkDrawCommand.h', | |
| 51 '../src/utils/debugger/SkDrawCommand.cpp', | |
| 52 '../src/utils/debugger/SkDebugCanvas.h', | |
| 53 '../src/utils/debugger/SkDebugCanvas.cpp', | |
| 54 '../src/utils/debugger/SkObjectParser.h', | |
| 55 '../src/utils/debugger/SkObjectParser.cpp', | |
| 56 ], | 46 ], |
| 57 'dependencies': [ | 47 'dependencies': [ |
| 58 'skia_lib.gyp:skia_lib', | 48 'skia_lib.gyp:skia_lib', |
| 59 'flags.gyp:flags', | 49 'flags.gyp:flags', |
| 60 'gm.gyp:gm_expectations', | 50 'gm.gyp:gm_expectations', |
| 61 'jsoncpp.gyp:jsoncpp', | 51 'jsoncpp.gyp:jsoncpp', |
| 62 'pdf.gyp:pdf', | 52 'pdf.gyp:pdf', |
| 63 ], | 53 ], |
| 64 'conditions': [ | 54 'conditions': [ |
| 65 ['skia_run_pdfviewer_in_gm or skia_poppler_enabled', { | 55 ['skia_run_pdfviewer_in_gm or skia_poppler_enabled', { |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 '../src/gpu', | 100 '../src/gpu', |
| 111 ], | 101 ], |
| 112 'dependencies': [ | 102 'dependencies': [ |
| 113 'gputest.gyp:skgputest', | 103 'gputest.gyp:skgputest', |
| 114 ], | 104 ], |
| 115 }], | 105 }], |
| 116 ], | 106 ], |
| 117 }, | 107 }, |
| 118 ], | 108 ], |
| 119 } | 109 } |
| OLD | NEW |