aboutsummaryrefslogtreecommitdiffhomepage
path: root/skia.gyp
diff options
context:
space:
mode:
authorGravatar epoger@google.com <epoger@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-10-25 16:32:07 +0000
committerGravatar epoger@google.com <epoger@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-10-25 16:32:07 +0000
commit6714ea4e4d96ad49c79ad51959db980141c56c38 (patch)
tree9b1b6b3501cca6fb85f49d610e5f10b926cdd98c /skia.gyp
parentf28dd8ab109663a6fe67fd4ee3d66248e0dac686 (diff)
gyp: generate "everything" and "most" targets instead of "all"
"make all" at the toplevel now chains to "make everything" BUG=http://code.google.com/p/skia/issues/detail?id=932 Review URL: https://codereview.appspot.com/6651064 git-svn-id: http://skia.googlecode.com/svn/trunk@6116 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'skia.gyp')
-rw-r--r--skia.gyp26
1 files changed, 3 insertions, 23 deletions
diff --git a/skia.gyp b/skia.gyp
index 0f3f37599b..34c0528709 100644
--- a/skia.gyp
+++ b/skia.gyp
@@ -6,36 +6,16 @@
# More targets are defined within the gyp/ directory, but those are
# not intended for external use and may change without notice.
#
-# Full documentation at http://code.google.com/p/skia/wiki/DocRoot
+# Full documentation at https://sites.google.com/site/skiadocs/
#
{
'targets': [
{
- # Use this target to build everything provided by Skia.
- 'target_name': 'all',
+ 'target_name': 'alltargets',
'type': 'none',
'dependencies': [
- # The minimal set of static libraries for basic Skia functionality.
- 'gyp/skia_base_libs.gyp:skia_base_libs',
-
- 'gyp/bench.gyp:bench',
- 'gyp/gm.gyp:gm',
+ 'gyp/everything.gyp:everything',
'gyp/most.gyp:most',
- 'gyp/SampleApp.gyp:SampleApp',
- 'gyp/tests.gyp:tests',
- 'gyp/tools.gyp:tools',
- ],
- 'conditions': [
- ['skia_os == "android"', {
- 'dependencies': [
- 'gyp/android_system.gyp:SkiaAndroidApp',
- ],
- }],
-
- # The debugger is not supported for iOS, Android and 32-bit Mac builds.
- ['skia_os != "ios" and skia_os != "android" and (skia_os != "mac" or skia_arch_width == 64)', {
- 'dependencies': [ 'gyp/debugger.gyp:debugger' ],
- }],
],
},
],