summaryrefslogtreecommitdiff
path: root/pathops_unittest.gyp
diff options
context:
space:
mode:
Diffstat (limited to 'pathops_unittest.gyp')
-rw-r--r--pathops_unittest.gyp48
1 files changed, 48 insertions, 0 deletions
diff --git a/pathops_unittest.gyp b/pathops_unittest.gyp
new file mode 100644
index 0000000..c7c32ef
--- /dev/null
+++ b/pathops_unittest.gyp
@@ -0,0 +1,48 @@
+# GYP file to build unit tests.
+{
+ 'includes': [
+ 'apptype_console.gypi',
+ ],
+ 'targets': [
+ {
+ 'target_name': 'pathops_unittest',
+ 'type': 'executable',
+ 'suppress_wildcard': '1',
+ 'include_dirs' : [
+ '../src/core',
+ '../src/effects',
+ '../src/lazy',
+ '../src/pathops',
+ '../src/pdf',
+ '../src/pipe/utils',
+ '../src/utils',
+ '../tools/',
+ ],
+ 'includes': [
+ 'pathops_unittest.gypi',
+ ],
+ 'sources': [
+ '../tests/Test.cpp',
+ '../tests/skia_test.cpp',
+ '../tests/Test.h',
+ ],
+ 'dependencies': [
+ 'skia_lib.gyp:skia_lib',
+ 'flags.gyp:flags',
+ ],
+ '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: