summaryrefslogtreecommitdiff
path: root/shapeops_tool.gyp
diff options
context:
space:
mode:
Diffstat (limited to 'shapeops_tool.gyp')
-rw-r--r--shapeops_tool.gyp37
1 files changed, 37 insertions, 0 deletions
diff --git a/shapeops_tool.gyp b/shapeops_tool.gyp
new file mode 100644
index 0000000..35caccb
--- /dev/null
+++ b/shapeops_tool.gyp
@@ -0,0 +1,37 @@
+# GYP file to build unit tests.
+{
+ 'includes': [
+ 'apptype_console.gypi',
+ 'common.gypi',
+ ],
+ 'targets': [
+ {
+ 'target_name': 'addTest',
+ 'type': 'executable',
+ 'include_dirs' : [
+ '../src/core',
+ ],
+ 'sources': [
+ '../experimental/Intersection/AddTestOutput/main.cpp',
+ ],
+ 'dependencies': [
+ 'skia_lib.gyp:skia_lib',
+ 'experimental.gyp:experimental',
+ 'pdf.gyp:pdf',
+ ],
+ 'conditions': [
+ [ 'skia_gpu == 1', {
+ 'include_dirs': [
+ '../src/gpu',
+ ],
+ }],
+ ],
+ },
+ ],
+}
+
+# Local Variables:
+# tab-width:2
+# indent-tabs-mode:nil
+# End:
+# vim: set expandtab tabstop=2 shiftwidth=2: