blob: 49af7d7f4519ffcc577ad5c7d8877ee6ce8adefa [file] [log] [blame]
caryclark@google.com818b0cc2013-04-08 11:50:46 +00001# GYP file to build unit tests.
2{
3 'includes': [
4 'apptype_console.gypi',
5 ],
6 'targets': [
7 {
8 'target_name': 'pathops_unittest',
9 'type': 'executable',
caryclark@google.comdb60de72013-04-11 12:33:23 +000010 'suppress_wildcard': '1',
caryclark@google.com818b0cc2013-04-08 11:50:46 +000011 'include_dirs' : [
caryclark@google.com818b0cc2013-04-08 11:50:46 +000012 '../src/core',
13 '../src/effects',
14 '../src/lazy',
caryclark@google.comd2d90042013-04-25 14:28:14 +000015 '../src/pathops',
caryclark@google.com818b0cc2013-04-08 11:50:46 +000016 '../src/pdf',
17 '../src/pipe/utils',
18 '../src/utils',
19 '../tools/',
20 ],
caryclark@google.com7abfa492013-04-12 11:59:41 +000021 'includes': [
caryclark@google.com7abfa492013-04-12 11:59:41 +000022 'pathops_unittest.gypi',
23 ],
caryclark@google.com818b0cc2013-04-08 11:50:46 +000024 'sources': [
caryclark@google.com7eaa53d2013-10-02 14:49:34 +000025 '../tests/PathOpsSkpClipTest.cpp',
caryclark@google.com818b0cc2013-04-08 11:50:46 +000026 '../tests/Test.cpp',
27 '../tests/skia_test.cpp',
28 '../tests/Test.h',
29 ],
30 'dependencies': [
djsollen@google.com52f02972013-06-03 12:10:19 +000031 'skia_lib.gyp:skia_lib',
scroggo@google.com5a6324e2013-04-11 20:11:40 +000032 'flags.gyp:flags',
caryclark@google.com818b0cc2013-04-08 11:50:46 +000033 ],
34 'conditions': [
35 [ 'skia_gpu == 1', {
36 'include_dirs': [
37 '../src/gpu',
38 ],
39 }],
40 ],
41 },
42 ],
43}