2012-10-25 16:32:07 +00:00
|
|
|
# Build EVERYTHING provided by Skia.
|
|
|
|
# (Start with the "most" target, and then add targets that we intentionally
|
|
|
|
# left out of "most". See most.gyp for an explanation of which targets are
|
|
|
|
# left out of "most".)
|
|
|
|
#
|
|
|
|
# We used to call this the 'all' target, but in SOME cases that
|
|
|
|
# conflicted with an automatically-generated 'all' target.
|
|
|
|
# See https://code.google.com/p/skia/issues/detail?id=932
|
|
|
|
#
|
|
|
|
{
|
|
|
|
'targets': [
|
|
|
|
{
|
|
|
|
'target_name': 'everything',
|
|
|
|
'type': 'none',
|
2013-10-16 13:02:15 +00:00
|
|
|
'dependencies': [
|
|
|
|
'most.gyp:most',
|
|
|
|
],
|
2012-10-25 16:32:07 +00:00
|
|
|
'conditions': [
|
2013-08-24 15:50:43 +00:00
|
|
|
['skia_os in ("ios", "android", "chromeos") or (skia_os == "mac" and skia_arch_width == 32)', {
|
2012-10-25 16:32:07 +00:00
|
|
|
# debugger is not supported on this platform
|
|
|
|
}, {
|
2013-11-14 15:46:25 +00:00
|
|
|
'dependencies': [
|
|
|
|
'debugger.gyp:debugger',
|
|
|
|
'pdfviewer.gyp:pdfviewer',
|
2013-12-05 13:45:19 +00:00
|
|
|
#'v8.gyp:SkV8Example',
|
2014-03-11 22:57:50 +00:00
|
|
|
#'webtry.gyp:webtry',
|
2014-06-22 23:13:00 +00:00
|
|
|
],
|
2012-10-25 16:32:07 +00:00
|
|
|
}],
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
}
|