aboutsummaryrefslogtreecommitdiffhomepage
path: root/skia.gyp
diff options
context:
space:
mode:
authorGravatar epoger@google.com <epoger@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2011-06-07 14:48:41 +0000
committerGravatar epoger@google.com <epoger@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2011-06-07 14:48:41 +0000
commit1e8e056afc6a7fc533f696e93771bde861a53db7 (patch)
tree45be1d87bbd3be35cf4d4e0517f5836d5a5ad7d9 /skia.gyp
parent288ff33d06776d6b105f8056af30191510ca0e3f (diff)
Some final cleanups leading up to The Official Switch to Gyp
see http://codereview.appspot.com/4580043 1. Create a single public skia.gyp file that all outside projects (Chrome, Android, etc.) should depend on from now on. I haven't yet created targets suitable for those projects to use, but this is where we should add them. 2. Make gyp generate its Makefiles within out/ directory, rather than polluting directories under source control. 3. Modify trunk/Makefile to automatically run gyp_skia and then call the generated Makefile, to ease developer transition. git-svn-id: http://skia.googlecode.com/svn/trunk@1526 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'skia.gyp')
-rw-r--r--skia.gyp32
1 files changed, 32 insertions, 0 deletions
diff --git a/skia.gyp b/skia.gyp
new file mode 100644
index 0000000000..164ef091b8
--- /dev/null
+++ b/skia.gyp
@@ -0,0 +1,32 @@
+# Top-level gyp configuration for Skia.
+#
+# Projects that use Skia should depend on one or more of the targets
+# defined here.
+#
+# 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
+#
+{
+ 'targets': [
+ {
+ # Use this target to build everything provided by Skia.
+ 'target_name': 'all',
+ 'type': 'none',
+ 'dependencies': [
+ 'gyp/bench.gyp:bench',
+ 'gyp/gm.gyp:gm',
+ 'gyp/SampleApp.gyp:SampleApp',
+ 'gyp/tests.gyp:tests',
+ 'gyp/tools.gyp:tools',
+ ],
+ },
+ ],
+}
+
+# Local Variables:
+# tab-width:2
+# indent-tabs-mode:nil
+# End:
+# vim: set expandtab tabstop=2 shiftwidth=2: