blob: 87e125b2166f523c966ed3da42907ee199661043 [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': [
commit-bot@chromium.org4431e772014-04-14 17:08:59 +000025 '../tests/PathOpsAngleIdeas.cpp',
26 '../tests/PathOpsDebug.cpp',
caryclark@google.com7eaa53d2013-10-02 14:49:34 +000027 '../tests/PathOpsSkpClipTest.cpp',
caryclark@google.com818b0cc2013-04-08 11:50:46 +000028 '../tests/Test.cpp',
29 '../tests/skia_test.cpp',
30 '../tests/Test.h',
31 ],
32 'dependencies': [
djsollen@google.com52f02972013-06-03 12:10:19 +000033 'skia_lib.gyp:skia_lib',
scroggo@google.com5a6324e2013-04-11 20:11:40 +000034 'flags.gyp:flags',
caryclark@google.com818b0cc2013-04-08 11:50:46 +000035 ],
36 'conditions': [
37 [ 'skia_gpu == 1', {
38 'include_dirs': [
39 '../src/gpu',
40 ],
41 }],
42 ],
43 },
44 ],
45}