blob: 93b1149d623146eb72dc71c3c055e78991fb6f53 [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',
bsalomon@google.coma8e686e2011-08-16 15:45:58 +000013 '../gpu/src',
epoger@google.comccdbd2c2011-06-02 14:38:23 +000014 ],
15 'sources': [
16 '../tests/BitmapCopyTest.cpp',
17 '../tests/BitmapGetColorTest.cpp',
reed@google.com2b75f422011-07-07 13:43:38 +000018 '../tests/BitSetTest.cpp',
epoger@google.comccdbd2c2011-06-02 14:38:23 +000019 '../tests/BlitRowTest.cpp',
reed@google.com2b75f422011-07-07 13:43:38 +000020 '../tests/BlurTest.cpp',
epoger@google.comccdbd2c2011-06-02 14:38:23 +000021 '../tests/ClampRangeTest.cpp',
22 '../tests/ClipCubicTest.cpp',
23 '../tests/ClipStackTest.cpp',
24 '../tests/ClipperTest.cpp',
25 '../tests/ColorFilterTest.cpp',
26 '../tests/ColorTest.cpp',
reed@google.com35ae8ea2011-06-14 19:18:26 +000027 '../tests/DataRefTest.cpp',
epoger@google.comccdbd2c2011-06-02 14:38:23 +000028 '../tests/DequeTest.cpp',
29 '../tests/DrawBitmapRectTest.cpp',
30 '../tests/FillPathTest.cpp',
31 '../tests/FlateTest.cpp',
32 '../tests/GeometryTest.cpp',
bsalomon@google.coma8e686e2011-08-16 15:45:58 +000033 '../tests/GLProgramsTest.cpp',
epoger@google.comccdbd2c2011-06-02 14:38:23 +000034 '../tests/InfRectTest.cpp',
35 '../tests/MathTest.cpp',
36 '../tests/MatrixTest.cpp',
reed@google.com125002a2011-06-09 19:13:41 +000037 '../tests/Matrix44Test.cpp',
epoger@google.comccdbd2c2011-06-02 14:38:23 +000038 '../tests/MetaDataTest.cpp',
39 '../tests/PackBitsTest.cpp',
40 '../tests/PaintTest.cpp',
41 '../tests/ParsePathTest.cpp',
tomhudson@google.comfc1539a2011-06-24 15:43:24 +000042 '../tests/PathCoverageTest.cpp',
epoger@google.comccdbd2c2011-06-02 14:38:23 +000043 '../tests/PathMeasureTest.cpp',
44 '../tests/PathTest.cpp',
45 '../tests/PDFPrimitivesTest.cpp',
epoger@google.comd33f75c2011-06-15 18:49:21 +000046 '../tests/PointTest.cpp',
epoger@google.comccdbd2c2011-06-02 14:38:23 +000047 '../tests/Reader32Test.cpp',
48 '../tests/RefDictTest.cpp',
49 '../tests/RegionTest.cpp',
50 '../tests/Sk64Test.cpp',
51 '../tests/skia_test.cpp',
52 '../tests/SortTest.cpp',
53 '../tests/SrcOverTest.cpp',
54 '../tests/StreamTest.cpp',
55 '../tests/StringTest.cpp',
56 '../tests/Test.cpp',
bsalomon@google.coma8e686e2011-08-16 15:45:58 +000057 '../tests/Test.h',
epoger@google.comccdbd2c2011-06-02 14:38:23 +000058 '../tests/TestSize.cpp',
bsalomon@google.coma8e686e2011-08-16 15:45:58 +000059 '../tests/ToUnicode.cpp',
epoger@google.comccdbd2c2011-06-02 14:38:23 +000060 '../tests/UtilsTest.cpp',
61 '../tests/Writer32Test.cpp',
62 '../tests/XfermodeTest.cpp',
63 ],
64 'dependencies': [
65 'core.gyp:core',
66 'effects.gyp:effects',
reed@google.com125002a2011-06-09 19:13:41 +000067 'experimental.gyp:experimental',
bsalomon@google.coma8e686e2011-08-16 15:45:58 +000068 'gpu.gyp:gr',
69 'gpu.gyp:skgr',
epoger@google.comccdbd2c2011-06-02 14:38:23 +000070 'images.gyp:images',
epoger@google.comdcab3a12011-06-24 19:09:09 +000071 'pdf.gyp:pdf',
epoger@google.comccdbd2c2011-06-02 14:38:23 +000072 'utils.gyp:utils',
73 ],
epoger@google.comccdbd2c2011-06-02 14:38:23 +000074 },
75 ],
76}
77
78# Local Variables:
79# tab-width:2
80# indent-tabs-mode:nil
81# End:
82# vim: set expandtab tabstop=2 shiftwidth=2: