blob: 9bde66ff76bfd6ebbfa575ee4b6ef03303a61239 [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',
epoger@google.com5351b372011-07-01 17:16:26 +00005 'common.gypi',
epoger@google.comccdbd2c2011-06-02 14:38:23 +00006 ],
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',
reed@google.com2b75f422011-07-07 13:43:38 +000017 '../tests/BitSetTest.cpp',
epoger@google.comccdbd2c2011-06-02 14:38:23 +000018 '../tests/BlitRowTest.cpp',
reed@google.com2b75f422011-07-07 13:43:38 +000019 '../tests/BlurTest.cpp',
epoger@google.comccdbd2c2011-06-02 14:38:23 +000020 '../tests/ClampRangeTest.cpp',
21 '../tests/ClipCubicTest.cpp',
22 '../tests/ClipStackTest.cpp',
23 '../tests/ClipperTest.cpp',
24 '../tests/ColorFilterTest.cpp',
25 '../tests/ColorTest.cpp',
reed@google.com35ae8ea2011-06-14 19:18:26 +000026 '../tests/DataRefTest.cpp',
epoger@google.comccdbd2c2011-06-02 14:38:23 +000027 '../tests/DequeTest.cpp',
28 '../tests/DrawBitmapRectTest.cpp',
29 '../tests/FillPathTest.cpp',
30 '../tests/FlateTest.cpp',
31 '../tests/GeometryTest.cpp',
32 '../tests/InfRectTest.cpp',
33 '../tests/MathTest.cpp',
34 '../tests/MatrixTest.cpp',
reed@google.com125002a2011-06-09 19:13:41 +000035 '../tests/Matrix44Test.cpp',
epoger@google.comccdbd2c2011-06-02 14:38:23 +000036 '../tests/MetaDataTest.cpp',
37 '../tests/PackBitsTest.cpp',
38 '../tests/PaintTest.cpp',
39 '../tests/ParsePathTest.cpp',
tomhudson@google.comfc1539a2011-06-24 15:43:24 +000040 '../tests/PathCoverageTest.cpp',
epoger@google.comccdbd2c2011-06-02 14:38:23 +000041 '../tests/PathMeasureTest.cpp',
42 '../tests/PathTest.cpp',
43 '../tests/PDFPrimitivesTest.cpp',
epoger@google.comd33f75c2011-06-15 18:49:21 +000044 '../tests/PointTest.cpp',
epoger@google.comccdbd2c2011-06-02 14:38:23 +000045 '../tests/Reader32Test.cpp',
46 '../tests/RefDictTest.cpp',
47 '../tests/RegionTest.cpp',
48 '../tests/Sk64Test.cpp',
49 '../tests/skia_test.cpp',
50 '../tests/SortTest.cpp',
51 '../tests/SrcOverTest.cpp',
52 '../tests/StreamTest.cpp',
53 '../tests/StringTest.cpp',
54 '../tests/Test.cpp',
55 '../tests/TestSize.cpp',
56 '../tests/UtilsTest.cpp',
57 '../tests/Writer32Test.cpp',
58 '../tests/XfermodeTest.cpp',
59 ],
60 'dependencies': [
61 'core.gyp:core',
62 'effects.gyp:effects',
reed@google.com125002a2011-06-09 19:13:41 +000063 'experimental.gyp:experimental',
epoger@google.comccdbd2c2011-06-02 14:38:23 +000064 'images.gyp:images',
epoger@google.comdcab3a12011-06-24 19:09:09 +000065 'pdf.gyp:pdf',
epoger@google.comccdbd2c2011-06-02 14:38:23 +000066 'utils.gyp:utils',
67 ],
epoger@google.comccdbd2c2011-06-02 14:38:23 +000068 },
69 ],
70}
71
72# Local Variables:
73# tab-width:2
74# indent-tabs-mode:nil
75# End:
76# vim: set expandtab tabstop=2 shiftwidth=2: