blob: bb99c87a16739ce96c18419f8e9c01cd8004ba0f [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.comd38f1372011-10-12 19:53:16 +000013 '../src/gpu',
epoger@google.comccdbd2c2011-06-02 14:38:23 +000014 ],
15 'sources': [
reed@google.com209c4152011-10-26 15:03:48 +000016 '../tests/AAClipTest.cpp',
epoger@google.comccdbd2c2011-06-02 14:38:23 +000017 '../tests/BitmapCopyTest.cpp',
18 '../tests/BitmapGetColorTest.cpp',
reed@google.com2b75f422011-07-07 13:43:38 +000019 '../tests/BitSetTest.cpp',
epoger@google.comccdbd2c2011-06-02 14:38:23 +000020 '../tests/BlitRowTest.cpp',
reed@google.com2b75f422011-07-07 13:43:38 +000021 '../tests/BlurTest.cpp',
epoger@google.comccdbd2c2011-06-02 14:38:23 +000022 '../tests/ClampRangeTest.cpp',
23 '../tests/ClipCubicTest.cpp',
24 '../tests/ClipStackTest.cpp',
25 '../tests/ClipperTest.cpp',
26 '../tests/ColorFilterTest.cpp',
27 '../tests/ColorTest.cpp',
reed@google.com35ae8ea2011-06-14 19:18:26 +000028 '../tests/DataRefTest.cpp',
epoger@google.comccdbd2c2011-06-02 14:38:23 +000029 '../tests/DequeTest.cpp',
30 '../tests/DrawBitmapRectTest.cpp',
31 '../tests/FillPathTest.cpp',
32 '../tests/FlateTest.cpp',
33 '../tests/GeometryTest.cpp',
bsalomon@google.com57f5d982011-10-24 21:17:53 +000034 '../tests/GLInterfaceValidation.cpp',
bsalomon@google.coma8e686e2011-08-16 15:45:58 +000035 '../tests/GLProgramsTest.cpp',
epoger@google.comccdbd2c2011-06-02 14:38:23 +000036 '../tests/InfRectTest.cpp',
37 '../tests/MathTest.cpp',
38 '../tests/MatrixTest.cpp',
reed@google.com125002a2011-06-09 19:13:41 +000039 '../tests/Matrix44Test.cpp',
epoger@google.comccdbd2c2011-06-02 14:38:23 +000040 '../tests/MetaDataTest.cpp',
41 '../tests/PackBitsTest.cpp',
42 '../tests/PaintTest.cpp',
43 '../tests/ParsePathTest.cpp',
tomhudson@google.comfc1539a2011-06-24 15:43:24 +000044 '../tests/PathCoverageTest.cpp',
epoger@google.comccdbd2c2011-06-02 14:38:23 +000045 '../tests/PathMeasureTest.cpp',
46 '../tests/PathTest.cpp',
47 '../tests/PDFPrimitivesTest.cpp',
epoger@google.comd33f75c2011-06-15 18:49:21 +000048 '../tests/PointTest.cpp',
reed@google.com3d608122011-11-21 15:16:16 +000049 '../tests/QuickRejectTest.cpp',
epoger@google.comccdbd2c2011-06-02 14:38:23 +000050 '../tests/Reader32Test.cpp',
bsalomon@google.comc6980972011-11-02 19:57:21 +000051 '../tests/ReadPixelsTest.cpp',
epoger@google.comccdbd2c2011-06-02 14:38:23 +000052 '../tests/RefDictTest.cpp',
53 '../tests/RegionTest.cpp',
54 '../tests/Sk64Test.cpp',
55 '../tests/skia_test.cpp',
56 '../tests/SortTest.cpp',
57 '../tests/SrcOverTest.cpp',
58 '../tests/StreamTest.cpp',
59 '../tests/StringTest.cpp',
60 '../tests/Test.cpp',
bsalomon@google.coma8e686e2011-08-16 15:45:58 +000061 '../tests/Test.h',
epoger@google.comccdbd2c2011-06-02 14:38:23 +000062 '../tests/TestSize.cpp',
bsalomon@google.coma8e686e2011-08-16 15:45:58 +000063 '../tests/ToUnicode.cpp',
epoger@google.comccdbd2c2011-06-02 14:38:23 +000064 '../tests/UtilsTest.cpp',
vandebo@chromium.orgbeb7fe12011-11-11 19:38:54 +000065 '../tests/WArrayTest.cpp',
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +000066 '../tests/WritePixelsTest.cpp',
epoger@google.comccdbd2c2011-06-02 14:38:23 +000067 '../tests/Writer32Test.cpp',
68 '../tests/XfermodeTest.cpp',
69 ],
70 'dependencies': [
71 'core.gyp:core',
72 'effects.gyp:effects',
reed@google.com125002a2011-06-09 19:13:41 +000073 'experimental.gyp:experimental',
bsalomon@google.coma8e686e2011-08-16 15:45:58 +000074 'gpu.gyp:gr',
75 'gpu.gyp:skgr',
epoger@google.comccdbd2c2011-06-02 14:38:23 +000076 'images.gyp:images',
epoger@google.comdcab3a12011-06-24 19:09:09 +000077 'pdf.gyp:pdf',
epoger@google.comccdbd2c2011-06-02 14:38:23 +000078 'utils.gyp:utils',
79 ],
epoger@google.comccdbd2c2011-06-02 14:38:23 +000080 },
81 ],
82}
83
84# Local Variables:
85# tab-width:2
86# indent-tabs-mode:nil
87# End:
88# vim: set expandtab tabstop=2 shiftwidth=2: