Index: gyp/skflate.gyp |
diff --git a/gyp/skflate.gyp b/gyp/skflate.gyp |
new file mode 100644 |
index 0000000000000000000000000000000000000000..0dd915f2c8061a20aed0db4132b7a878b2e8067a |
--- /dev/null |
+++ b/gyp/skflate.gyp |
@@ -0,0 +1,17 @@ |
+# Target for including zlib. |
djsollen
2014/02/06 16:24:34
fix this comment
hal.canary
2014/02/06 18:01:57
Done.
scroggo
2014/02/06 18:14:50
I think a better fix is to change it to:
# Target
|
+{ |
+ 'targets': [ |
+ { |
+ 'target_name': 'skflate', |
+ 'type': 'static_library', |
+ 'dependencies': [ |
+ 'skia_lib.gyp:skia_lib', |
+ 'libzlib.gyp:libzlib', |
+ ], |
+ 'sources': [ |
+ '../include/core/SkFlate.h', |
+ '../src/core/SkFlate.cpp', |
+ ], |
+ }, |
+ ], |
+} |