| 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' : [ |
| 11 '../src/core', | 11 '../src/core', |
| 12 '../src/effects', | 12 '../src/effects', |
| 13 '../src/images', | 13 '../src/images', |
| 14 '../src/pipe/utils', | 14 '../src/pipe/utils', |
| 15 '../src/utils', | 15 '../src/utils', |
| 16 ], | 16 ], |
| 17 'includes': [ | 17 'includes': [ |
| 18 'gmslides.gypi', | 18 'gmslides.gypi', |
| 19 ], | 19 ], |
| 20 'sources': [ | 20 'sources': [ |
| 21 '../gm/gm.cpp', |
| 21 '../gm/gmmain.cpp', | 22 '../gm/gmmain.cpp', |
| 22 '../gm/system_preferences_default.cpp', | 23 '../gm/system_preferences_default.cpp', |
| 23 | 24 |
| 24 '../src/pipe/utils/SamplePipeControllers.h', | 25 '../src/pipe/utils/SamplePipeControllers.h', |
| 25 '../src/pipe/utils/SamplePipeControllers.cpp', | 26 '../src/pipe/utils/SamplePipeControllers.cpp', |
| 26 ], | 27 ], |
| 27 'dependencies': [ | 28 'dependencies': [ |
| 28 'etc1.gyp:libetc1', | 29 'etc1.gyp:libetc1', |
| 29 'flags.gyp:flags', | 30 'flags.gyp:flags', |
| 30 'jsoncpp.gyp:jsoncpp', | 31 'jsoncpp.gyp:jsoncpp', |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 '../src/gpu', | 90 '../src/gpu', |
| 90 ], | 91 ], |
| 91 'dependencies': [ | 92 'dependencies': [ |
| 92 'gputest.gyp:skgputest', | 93 'gputest.gyp:skgputest', |
| 93 ], | 94 ], |
| 94 }], | 95 }], |
| 95 ], | 96 ], |
| 96 }, | 97 }, |
| 97 ], | 98 ], |
| 98 } | 99 } |
| OLD | NEW |