| 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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 }], | 76 }], |
| 77 ['skia_os == "win"', { | 77 ['skia_os == "win"', { |
| 78 'dependencies': [ | 78 'dependencies': [ |
| 79 'xps.gyp:xps', | 79 'xps.gyp:xps', |
| 80 ], | 80 ], |
| 81 }], | 81 }], |
| 82 ['skia_gpu == 1', { | 82 ['skia_gpu == 1', { |
| 83 'include_dirs': [ | 83 'include_dirs': [ |
| 84 '../src/gpu', | 84 '../src/gpu', |
| 85 ], | 85 ], |
| 86 'dependencies': [ |
| 87 'gputest.gyp:skgputest', |
| 88 ], |
| 86 }], | 89 }], |
| 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 |