blob: 3e6fceee765870cc7db1ee53a037e5b62f60dc0f [file] [log] [blame]
scroggo3e562272015-03-25 10:22:41 -07001# 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.com6714ea42012-10-25 16:32:07 +00005# 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.comd36522d2013-10-16 13:02:15 +000019 'dependencies': [
20 'most.gyp:most',
bungeman51190df2016-03-09 07:42:54 -080021 'skiaserve.gyp:skiaserve',
mtklein7e602c22016-07-11 11:27:30 -070022 'tools.gyp:monobench',
mtklein@google.comd36522d2013-10-16 13:02:15 +000023 ],
epoger@google.com6714ea42012-10-25 16:32:07 +000024 'conditions': [
borenet43bf5112016-04-29 14:01:34 -070025 ['skia_os in ("ios", "android")', {
epoger@google.com6714ea42012-10-25 16:32:07 +000026 # debugger is not supported on this platform
27 }, {
scroggo@google.come9179622013-11-14 15:46:25 +000028 'dependencies': [
29 'debugger.gyp:debugger',
commit-bot@chromium.org44a38772013-12-05 13:45:19 +000030 #'v8.gyp:SkV8Example',
tfarina1c4d5782014-06-22 16:13:00 -070031 ],
epoger@google.com6714ea42012-10-25 16:32:07 +000032 }],
borenetd2c7ef92016-05-16 10:38:51 -070033 ['skia_os == "android"', {
34 'dependencies': [
liyuqian97a09182016-07-06 07:52:08 -070035 'android_system.gyp:Viewer_APK',
borenetd2c7ef92016-05-16 10:38:51 -070036 ],
borenetd2c7ef92016-05-16 10:38:51 -070037 }],
epoger@google.com6714ea42012-10-25 16:32:07 +000038 ],
39 },
40 ],
41}