blob: 76cb919c8958b1c19c9f31fb13660b02be38ca35 [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',
mtklein@google.comd36522d2013-10-16 13:02:15 +000021 ],
epoger@google.com6714ea42012-10-25 16:32:07 +000022 'conditions': [
borenet@google.comd30cb832013-08-24 15:50:43 +000023 ['skia_os in ("ios", "android", "chromeos") or (skia_os == "mac" and skia_arch_width == 32)', {
epoger@google.com6714ea42012-10-25 16:32:07 +000024 # debugger is not supported on this platform
25 }, {
scroggo@google.come9179622013-11-14 15:46:25 +000026 'dependencies': [
27 'debugger.gyp:debugger',
28 'pdfviewer.gyp:pdfviewer',
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}