| OLD | NEW |
| 1 # Build EVERYTHING provided by Skia. | 1 # Build EVERYTHING provided by Skia. |
| 2 # (Start with the "most" target, and then add targets that we intentionally | 2 # (Start with the "most" target, and then add targets that we intentionally |
| 3 # left out of "most". See most.gyp for an explanation of which targets are | 3 # left out of "most". See most.gyp for an explanation of which targets are |
| 4 # left out of "most".) | 4 # left out of "most".) |
| 5 # | 5 # |
| 6 # We used to call this the 'all' target, but in SOME cases that | 6 # We used to call this the 'all' target, but in SOME cases that |
| 7 # conflicted with an automatically-generated 'all' target. | 7 # conflicted with an automatically-generated 'all' target. |
| 8 # See https://code.google.com/p/skia/issues/detail?id=932 | 8 # See https://code.google.com/p/skia/issues/detail?id=932 |
| 9 # | 9 # |
| 10 { | 10 { |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 ], | 25 ], |
| 26 }], | 26 }], |
| 27 # DM assumes you've got a GPU. | 27 # DM assumes you've got a GPU. |
| 28 ['skia_gpu == 1', { | 28 ['skia_gpu == 1', { |
| 29 'dependencies': [ 'dm.gyp:dm' ], | 29 'dependencies': [ 'dm.gyp:dm' ], |
| 30 }], | 30 }], |
| 31 ], | 31 ], |
| 32 }, | 32 }, |
| 33 ], | 33 ], |
| 34 } | 34 } |
| 35 | |
| 36 # Local Variables: | |
| 37 # tab-width:2 | |
| 38 # indent-tabs-mode:nil | |
| 39 # End: | |
| 40 # vim: set expandtab tabstop=2 shiftwidth=2: | |
| OLD | NEW |