| 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 11 matching lines...) Expand all Loading... |
| 22 'include_dirs': [ | 22 'include_dirs': [ |
| 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', |
| 33 '../src/lazy', |
| 32 '../src/effects', | 34 '../src/effects', |
| 33 '../src/pipe/utils/', | 35 '../src/pipe/utils/', |
| 34 '../src/utils/', | 36 '../src/utils/', |
| 35 '../src/utils/debugger', | 37 '../src/utils/debugger', |
| 36 ], | 38 ], |
| 37 'includes': [ | 39 'includes': [ |
| 38 'gmslides.gypi', | 40 'gmslides.gypi', |
| 39 ], | 41 ], |
| 40 'sources': [ | 42 'sources': [ |
| 41 '../gm/gm.cpp', | 43 '../gm/gm.cpp', |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 '../src/gpu', | 108 '../src/gpu', |
| 107 ], | 109 ], |
| 108 'dependencies': [ | 110 'dependencies': [ |
| 109 'gputest.gyp:skgputest', | 111 'gputest.gyp:skgputest', |
| 110 ], | 112 ], |
| 111 }], | 113 }], |
| 112 ], | 114 ], |
| 113 }, | 115 }, |
| 114 ], | 116 ], |
| 115 } | 117 } |
| OLD | NEW |