d2c7ef9495
BUG=skia: GOLD_TRYBOT_URL= https://gold.skia.org/search2?unt=true&query=source_type%3Dgm&master=false&issue=1986433002 Review-Url: https://codereview.chromium.org/1986433002
48 lines
1.3 KiB
Python
48 lines
1.3 KiB
Python
# Copyright 2015 Google Inc.
|
|
#
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
# 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',
|
|
'dependencies': [
|
|
'most.gyp:most',
|
|
'skiaserve.gyp:skiaserve',
|
|
],
|
|
'conditions': [
|
|
['skia_os in ("ios", "android")', {
|
|
# debugger is not supported on this platform
|
|
}, {
|
|
'dependencies': [
|
|
'debugger.gyp:debugger',
|
|
#'v8.gyp:SkV8Example',
|
|
],
|
|
}],
|
|
['skia_os == "android"', {
|
|
'dependencies': [
|
|
'android_system.gyp:SampleApp_APK',
|
|
],
|
|
'conditions': [
|
|
[ 'skia_gpu == 1', {
|
|
'dependencies': [
|
|
'android_system.gyp:VisualBench_APK',
|
|
],
|
|
}],
|
|
],
|
|
}],
|
|
],
|
|
},
|
|
],
|
|
}
|