blob: 95dc9c585bd61712ff893a0eb6b3a3d1e132e732 [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',
vandebo@chromium.orgd3a8c942011-07-02 01:26:37 +000017 '../tests/BitSetTest.cpp',
epoger@google.comccdbd2c2011-06-02 14:38:23 +000018 '../tests/BlitRowTest.cpp',
19 '../tests/ClampRangeTest.cpp',
20 '../tests/ClipCubicTest.cpp',
21 '../tests/ClipStackTest.cpp',
22 '../tests/ClipperTest.cpp',
23 '../tests/ColorFilterTest.cpp',
24 '../tests/ColorTest.cpp',
reed@google.com35ae8ea2011-06-14 19:18:26 +000025 '../tests/DataRefTest.cpp',
epoger@google.comccdbd2c2011-06-02 14:38:23 +000026 '../tests/DequeTest.cpp',
27 '../tests/DrawBitmapRectTest.cpp',
28 '../tests/FillPathTest.cpp',
29 '../tests/FlateTest.cpp',
30 '../tests/GeometryTest.cpp',
31 '../tests/InfRectTest.cpp',
32 '../tests/MathTest.cpp',
33 '../tests/MatrixTest.cpp',
reed@google.com125002a2011-06-09 19:13:41 +000034 '../tests/Matrix44Test.cpp',
epoger@google.comccdbd2c2011-06-02 14:38:23 +000035 '../tests/MetaDataTest.cpp',
36 '../tests/PackBitsTest.cpp',
37 '../tests/PaintTest.cpp',
38 '../tests/ParsePathTest.cpp',
tomhudson@google.comfc1539a2011-06-24 15:43:24 +000039 '../tests/PathCoverageTest.cpp',
epoger@google.comccdbd2c2011-06-02 14:38:23 +000040 '../tests/PathMeasureTest.cpp',
41 '../tests/PathTest.cpp',
42 '../tests/PDFPrimitivesTest.cpp',
epoger@google.comd33f75c2011-06-15 18:49:21 +000043 '../tests/PointTest.cpp',
epoger@google.comccdbd2c2011-06-02 14:38:23 +000044 '../tests/Reader32Test.cpp',
45 '../tests/RefDictTest.cpp',
46 '../tests/RegionTest.cpp',
47 '../tests/Sk64Test.cpp',
48 '../tests/skia_test.cpp',
49 '../tests/SortTest.cpp',
50 '../tests/SrcOverTest.cpp',
51 '../tests/StreamTest.cpp',
52 '../tests/StringTest.cpp',
53 '../tests/Test.cpp',
54 '../tests/TestSize.cpp',
55 '../tests/UtilsTest.cpp',
56 '../tests/Writer32Test.cpp',
57 '../tests/XfermodeTest.cpp',
58 ],
59 'dependencies': [
60 'core.gyp:core',
61 'effects.gyp:effects',
reed@google.com125002a2011-06-09 19:13:41 +000062 'experimental.gyp:experimental',
epoger@google.comccdbd2c2011-06-02 14:38:23 +000063 'images.gyp:images',
epoger@google.comdcab3a12011-06-24 19:09:09 +000064 'pdf.gyp:pdf',
epoger@google.comccdbd2c2011-06-02 14:38:23 +000065 'utils.gyp:utils',
66 ],
epoger@google.comccdbd2c2011-06-02 14:38:23 +000067 },
68 ],
69}
70
71# Local Variables:
72# tab-width:2
73# indent-tabs-mode:nil
74# End:
75# vim: set expandtab tabstop=2 shiftwidth=2: