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 { |
11 'targets': [ | 11 'targets': [ |
12 { | 12 { |
13 'target_name': 'everything', | 13 'target_name': 'everything', |
14 'type': 'none', | 14 'type': 'none', |
15 'dependencies': ['most.gyp:most'], | 15 'dependencies': [ |
| 16 'most.gyp:most', |
| 17 'dm.gyp:dm', |
| 18 ], |
16 'conditions': [ | 19 'conditions': [ |
17 ['skia_os in ("ios", "android", "chromeos") or (skia_os == "mac" and ski
a_arch_width == 32)', { | 20 ['skia_os in ("ios", "android", "chromeos") or (skia_os == "mac" and ski
a_arch_width == 32)', { |
18 # debugger is not supported on this platform | 21 # debugger is not supported on this platform |
19 }, { | 22 }, { |
20 'dependencies': [ 'debugger.gyp:debugger' ], | 23 'dependencies': [ 'debugger.gyp:debugger' ], |
21 }], | 24 }], |
22 ], | 25 ], |
23 }, | 26 }, |
24 ], | 27 ], |
25 } | 28 } |
26 | 29 |
27 # Local Variables: | 30 # Local Variables: |
28 # tab-width:2 | 31 # tab-width:2 |
29 # indent-tabs-mode:nil | 32 # indent-tabs-mode:nil |
30 # End: | 33 # End: |
31 # vim: set expandtab tabstop=2 shiftwidth=2: | 34 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |