epoger@google.com | 6714ea4 | 2012-10-25 16:32:07 +0000 | [diff] [blame] | 1 | # Build EVERYTHING provided by Skia. |
| 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 |
| 4 | # left out of "most".) |
| 5 | # |
| 6 | # We used to call this the 'all' target, but in SOME cases that |
| 7 | # conflicted with an automatically-generated 'all' target. |
| 8 | # See https://code.google.com/p/skia/issues/detail?id=932 |
| 9 | # |
| 10 | { |
| 11 | 'targets': [ |
| 12 | { |
| 13 | 'target_name': 'everything', |
| 14 | 'type': 'none', |
| 15 | 'dependencies': ['most.gyp:most'], |
| 16 | 'conditions': [ |
borenet@google.com | 327b9b2 | 2013-03-07 15:33:28 +0000 | [diff] [blame] | 17 | ['skia_os in ("ios", "android") or (skia_os == "mac" and skia_arch_width == 32)', { |
epoger@google.com | 6714ea4 | 2012-10-25 16:32:07 +0000 | [diff] [blame] | 18 | # debugger is not supported on this platform |
| 19 | }, { |
| 20 | 'dependencies': [ 'debugger.gyp:debugger' ], |
| 21 | }], |
| 22 | ], |
| 23 | }, |
| 24 | ], |
| 25 | } |
| 26 | |
| 27 | # Local Variables: |
| 28 | # tab-width:2 |
| 29 | # indent-tabs-mode:nil |
| 30 | # End: |
| 31 | # vim: set expandtab tabstop=2 shiftwidth=2: |