blob: d78a65a6313a6d298ababa4a63235d0118986109 [file] [log] [blame]
epoger@google.comccdbd2c2011-06-02 14:38:23 +00001# GYP file to build unit tests.
epoger@google.comccdbd2c2011-06-02 14:38:23 +00002{
3 'includes': [
4 'apptype_console.gypi',
5 'target_defaults.gypi',
6 ],
epoger@google.comccdbd2c2011-06-02 14:38:23 +00007 'targets': [
8 {
9 'target_name': 'tests',
10 'type': 'executable',
11 'include_dirs' : [
epoger@google.comccdbd2c2011-06-02 14:38:23 +000012 '../src/core',
13 ],
14 'sources': [
15 '../tests/BitmapCopyTest.cpp',
16 '../tests/BitmapGetColorTest.cpp',
17 '../tests/BlitRowTest.cpp',
18 '../tests/ClampRangeTest.cpp',
19 '../tests/ClipCubicTest.cpp',
20 '../tests/ClipStackTest.cpp',
21 '../tests/ClipperTest.cpp',
22 '../tests/ColorFilterTest.cpp',
23 '../tests/ColorTest.cpp',
reed@google.com35ae8ea2011-06-14 19:18:26 +000024 '../tests/DataRefTest.cpp',
epoger@google.comccdbd2c2011-06-02 14:38:23 +000025 '../tests/DequeTest.cpp',
26 '../tests/DrawBitmapRectTest.cpp',
27 '../tests/FillPathTest.cpp',
28 '../tests/FlateTest.cpp',
29 '../tests/GeometryTest.cpp',
30 '../tests/InfRectTest.cpp',
31 '../tests/MathTest.cpp',
32 '../tests/MatrixTest.cpp',
reed@google.com125002a2011-06-09 19:13:41 +000033 '../tests/Matrix44Test.cpp',
epoger@google.comccdbd2c2011-06-02 14:38:23 +000034 '../tests/MetaDataTest.cpp',
35 '../tests/PackBitsTest.cpp',
36 '../tests/PaintTest.cpp',
37 '../tests/ParsePathTest.cpp',
tomhudson@google.comfc1539a2011-06-24 15:43:24 +000038 '../tests/PathCoverageTest.cpp',
epoger@google.comccdbd2c2011-06-02 14:38:23 +000039 '../tests/PathMeasureTest.cpp',
40 '../tests/PathTest.cpp',
41 '../tests/PDFPrimitivesTest.cpp',
epoger@google.comd33f75c2011-06-15 18:49:21 +000042 '../tests/PointTest.cpp',
epoger@google.comccdbd2c2011-06-02 14:38:23 +000043 '../tests/Reader32Test.cpp',
44 '../tests/RefDictTest.cpp',
45 '../tests/RegionTest.cpp',
46 '../tests/Sk64Test.cpp',
47 '../tests/skia_test.cpp',
48 '../tests/SortTest.cpp',
49 '../tests/SrcOverTest.cpp',
50 '../tests/StreamTest.cpp',
51 '../tests/StringTest.cpp',
52 '../tests/Test.cpp',
53 '../tests/TestSize.cpp',
54 '../tests/UtilsTest.cpp',
55 '../tests/Writer32Test.cpp',
56 '../tests/XfermodeTest.cpp',
57 ],
58 'dependencies': [
59 'core.gyp:core',
60 'effects.gyp:effects',
reed@google.com125002a2011-06-09 19:13:41 +000061 'experimental.gyp:experimental',
epoger@google.comccdbd2c2011-06-02 14:38:23 +000062 'images.gyp:images',
epoger@google.comdcab3a12011-06-24 19:09:09 +000063 'pdf.gyp:pdf',
epoger@google.comccdbd2c2011-06-02 14:38:23 +000064 'utils.gyp:utils',
65 ],
epoger@google.comccdbd2c2011-06-02 14:38:23 +000066 },
67 ],
68}
69
70# Local Variables:
71# tab-width:2
72# indent-tabs-mode:nil
73# End:
74# vim: set expandtab tabstop=2 shiftwidth=2: