| 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 15 matching lines...) Expand all Loading... |
| 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/effects', | 32 '../src/effects', |
| 33 '../src/pipe/utils/', | 33 '../src/pipe/utils/', |
| 34 '../src/utils/', | 34 '../src/utils/', |
| 35 '../src/utils/debugger', | 35 '../src/utils/debugger', |
| 36 '../tools/', |
| 36 ], | 37 ], |
| 37 'includes': [ | 38 'includes': [ |
| 38 'gmslides.gypi', | 39 'gmslides.gypi', |
| 39 ], | 40 ], |
| 40 'sources': [ | 41 'sources': [ |
| 41 '../gm/gm.cpp', | 42 '../gm/gm.cpp', |
| 42 '../gm/gmmain.cpp', | 43 '../gm/gmmain.cpp', |
| 43 '../gm/system_preferences_default.cpp', | 44 '../gm/system_preferences_default.cpp', |
| 44 | 45 |
| 45 '../src/pipe/utils/SamplePipeControllers.h', | 46 '../src/pipe/utils/SamplePipeControllers.h', |
| 46 '../src/pipe/utils/SamplePipeControllers.cpp', | 47 '../src/pipe/utils/SamplePipeControllers.cpp', |
| 47 | 48 |
| 48 '../src/utils/debugger/SkDrawCommand.h', | 49 '../src/utils/debugger/SkDrawCommand.h', |
| 49 '../src/utils/debugger/SkDrawCommand.cpp', | 50 '../src/utils/debugger/SkDrawCommand.cpp', |
| 50 '../src/utils/debugger/SkDebugCanvas.h', | 51 '../src/utils/debugger/SkDebugCanvas.h', |
| 51 '../src/utils/debugger/SkDebugCanvas.cpp', | 52 '../src/utils/debugger/SkDebugCanvas.cpp', |
| 52 '../src/utils/debugger/SkObjectParser.h', | 53 '../src/utils/debugger/SkObjectParser.h', |
| 53 '../src/utils/debugger/SkObjectParser.cpp', | 54 '../src/utils/debugger/SkObjectParser.cpp', |
| 55 |
| 56 '../tools/ToolUtils.cpp', |
| 54 ], | 57 ], |
| 55 'dependencies': [ | 58 'dependencies': [ |
| 56 'skia_lib.gyp:skia_lib', | 59 'skia_lib.gyp:skia_lib', |
| 57 'flags.gyp:flags', | 60 'flags.gyp:flags', |
| 58 'gm.gyp:gm_expectations', | 61 'gm.gyp:gm_expectations', |
| 59 'jsoncpp.gyp:jsoncpp', | 62 'jsoncpp.gyp:jsoncpp', |
| 60 'pdf.gyp:pdf', | 63 'pdf.gyp:pdf', |
| 61 ], | 64 ], |
| 62 'conditions': [ | 65 'conditions': [ |
| 63 ['skia_os == "mac"', { | 66 ['skia_os == "mac"', { |
| (...skipping 23 matching lines...) Expand all Loading... |
| 87 ], | 90 ], |
| 88 }, | 91 }, |
| 89 ], | 92 ], |
| 90 } | 93 } |
| 91 | 94 |
| 92 # Local Variables: | 95 # Local Variables: |
| 93 # tab-width:2 | 96 # tab-width:2 |
| 94 # indent-tabs-mode:nil | 97 # indent-tabs-mode:nil |
| 95 # End: | 98 # End: |
| 96 # vim: set expandtab tabstop=2 shiftwidth=2: | 99 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |