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', |
bungeman | 51190df | 2016-03-09 07:42:54 -0800 | [diff] [blame] | 21 | 'skiaserve.gyp:skiaserve', |
mtklein | 7e602c2 | 2016-07-11 11:27:30 -0700 | [diff] [blame] | 22 | 'tools.gyp:monobench', |
mtklein@google.com | d36522d | 2013-10-16 13:02:15 +0000 | [diff] [blame] | 23 | ], |
epoger@google.com | 6714ea4 | 2012-10-25 16:32:07 +0000 | [diff] [blame] | 24 | 'conditions': [ |
borenet | 43bf511 | 2016-04-29 14:01:34 -0700 | [diff] [blame] | 25 | ['skia_os in ("ios", "android")', { |
epoger@google.com | 6714ea4 | 2012-10-25 16:32:07 +0000 | [diff] [blame] | 26 | # debugger is not supported on this platform |
| 27 | }, { |
scroggo@google.com | e917962 | 2013-11-14 15:46:25 +0000 | [diff] [blame] | 28 | 'dependencies': [ |
| 29 | 'debugger.gyp:debugger', |
commit-bot@chromium.org | 44a3877 | 2013-12-05 13:45:19 +0000 | [diff] [blame] | 30 | #'v8.gyp:SkV8Example', |
tfarina | 1c4d578 | 2014-06-22 16:13:00 -0700 | [diff] [blame] | 31 | ], |
epoger@google.com | 6714ea4 | 2012-10-25 16:32:07 +0000 | [diff] [blame] | 32 | }], |
borenet | d2c7ef9 | 2016-05-16 10:38:51 -0700 | [diff] [blame] | 33 | ['skia_os == "android"', { |
| 34 | 'dependencies': [ |
liyuqian | 97a0918 | 2016-07-06 07:52:08 -0700 | [diff] [blame] | 35 | 'android_system.gyp:Viewer_APK', |
borenet | d2c7ef9 | 2016-05-16 10:38:51 -0700 | [diff] [blame] | 36 | ], |
borenet | d2c7ef9 | 2016-05-16 10:38:51 -0700 | [diff] [blame] | 37 | }], |
epoger@google.com | 6714ea4 | 2012-10-25 16:32:07 +0000 | [diff] [blame] | 38 | ], |
| 39 | }, |
| 40 | ], |
| 41 | } |