blob: 47db978171d63beac92dc5b54316644a1ed6eb92 [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',
mtklein@google.comd36522d2013-10-16 13:02:15 +000022 ],
epoger@google.com6714ea42012-10-25 16:32:07 +000023 'conditions': [
Brian Salomon4239fc22015-07-27 09:10:36 -040024 ['skia_os in ("ios", "android", "chromeos")', {
epoger@google.com6714ea42012-10-25 16:32:07 +000025 # debugger is not supported on this platform
26 }, {
scroggo@google.come9179622013-11-14 15:46:25 +000027 'dependencies': [
28 'debugger.gyp:debugger',
commit-bot@chromium.org44a38772013-12-05 13:45:19 +000029 #'v8.gyp:SkV8Example',
tfarina1c4d5782014-06-22 16:13:00 -070030 ],
epoger@google.com6714ea42012-10-25 16:32:07 +000031 }],
epoger@google.com6714ea42012-10-25 16:32:07 +000032 ],
33 },
34 ],
35}