summaryrefslogtreecommitdiff
path: root/experimental.gyp
diff options
context:
space:
mode:
Diffstat (limited to 'experimental.gyp')
-rw-r--r--experimental.gyp37
1 files changed, 37 insertions, 0 deletions
diff --git a/experimental.gyp b/experimental.gyp
new file mode 100644
index 0000000..50e60e8
--- /dev/null
+++ b/experimental.gyp
@@ -0,0 +1,37 @@
+{
+ 'includes': [
+ 'target_defaults.gypi',
+ ],
+ 'targets': [
+ {
+ 'target_name': 'experimental',
+ 'type': 'static_library',
+ 'include_dirs': [
+ '../include/config',
+ '../include/core',
+ ],
+ 'sources': [
+ '../experimental/SkMatrix44.cpp',
+ '../experimental/SkMatrix44.h',
+ '../experimental/SkSetPoly3To3.cpp',
+ '../experimental/SkSetPoly3To3_A.cpp',
+ '../experimental/SkSetPoly3To3_D.cpp',
+ ],
+ 'sources!': [
+ '../experimental/SkMatrix44.cpp', #doesn't compile
+ '../experimental/SkMatrix44.h',
+ ],
+ 'direct_dependent_settings': {
+ 'include_dirs': [
+ '../experimental',
+ ],
+ },
+ },
+ ],
+}
+
+# Local Variables:
+# tab-width:2
+# indent-tabs-mode:nil
+# End:
+# vim: set expandtab tabstop=2 shiftwidth=2: