blob: c7c32ef2c9ee2bf54090d40dace2a052258db638 [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.com818b0cc2013-04-08 11:50:46 +000025 '../tests/Test.cpp',
26 '../tests/skia_test.cpp',
27 '../tests/Test.h',
28 ],
29 'dependencies': [
djsollen@google.com52f02972013-06-03 12:10:19 +000030 'skia_lib.gyp:skia_lib',
scroggo@google.com5a6324e2013-04-11 20:11:40 +000031 'flags.gyp:flags',
caryclark@google.com818b0cc2013-04-08 11:50:46 +000032 ],
33 'conditions': [
34 [ 'skia_gpu == 1', {
35 'include_dirs': [
36 '../src/gpu',
37 ],
38 }],
39 ],
40 },
41 ],
42}
43
44# Local Variables:
45# tab-width:2
46# indent-tabs-mode:nil
47# End:
48# vim: set expandtab tabstop=2 shiftwidth=2: