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
diff --git a/skia.gyp b/skia.gyp
index 0f3f375..34c0528 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' ],
-        }],
       ],
     },
   ],