scroggo | 3e56227 | 2015-03-25 10:22:41 -0700 | [diff] [blame] | 1 | # Copyright 2015 Google Inc. |
| 2 | # |
| 3 | # Use of this source code is governed by a BSD-style license that can be |
| 4 | # found in the LICENSE file. |
epoger@google.com | 6714ea4 | 2012-10-25 16:32:07 +0000 | [diff] [blame] | 5 | # Build EVERYTHING provided by Skia. |
| 6 | # (Start with the "most" target, and then add targets that we intentionally |
| 7 | # left out of "most". See most.gyp for an explanation of which targets are |
| 8 | # left out of "most".) |
| 9 | # |
| 10 | # We used to call this the 'all' target, but in SOME cases that |
| 11 | # conflicted with an automatically-generated 'all' target. |
| 12 | # See https://code.google.com/p/skia/issues/detail?id=932 |
| 13 | # |
| 14 | { |
| 15 | 'targets': [ |
| 16 | { |
| 17 | 'target_name': 'everything', |
| 18 | 'type': 'none', |
mtklein@google.com | d36522d | 2013-10-16 13:02:15 +0000 | [diff] [blame] | 19 | 'dependencies': [ |
| 20 | 'most.gyp:most', |
mtklein@google.com | d36522d | 2013-10-16 13:02:15 +0000 | [diff] [blame] | 21 | ], |
epoger@google.com | 6714ea4 | 2012-10-25 16:32:07 +0000 | [diff] [blame] | 22 | 'conditions': [ |
Brian Salomon | 4239fc2 | 2015-07-27 09:10:36 -0400 | [diff] [blame] | 23 | ['skia_os in ("ios", "android", "chromeos")', { |
epoger@google.com | 6714ea4 | 2012-10-25 16:32:07 +0000 | [diff] [blame] | 24 | # debugger is not supported on this platform |
| 25 | }, { |
scroggo@google.com | e917962 | 2013-11-14 15:46:25 +0000 | [diff] [blame] | 26 | 'dependencies': [ |
| 27 | 'debugger.gyp:debugger', |
commit-bot@chromium.org | 44a3877 | 2013-12-05 13:45:19 +0000 | [diff] [blame] | 28 | #'v8.gyp:SkV8Example', |
tfarina | 1c4d578 | 2014-06-22 16:13:00 -0700 | [diff] [blame] | 29 | ], |
epoger@google.com | 6714ea4 | 2012-10-25 16:32:07 +0000 | [diff] [blame] | 30 | }], |
epoger@google.com | 6714ea4 | 2012-10-25 16:32:07 +0000 | [diff] [blame] | 31 | ], |
| 32 | }, |
| 33 | ], |
| 34 | } |