Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(149)

Side by Side Diff: gyp/tests.gyp

Issue 179403010: Revert of Let DM run unit tests. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « gyp/dm.gyp ('k') | gyp/tests.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # GYP file to build unit tests. 1 # GYP file to build unit tests.
2 { 2 {
3 'includes': [ 3 'includes': [
4 'apptype_console.gypi', 4 'apptype_console.gypi',
5 ], 5 ],
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'tests', 8 'target_name': 'tests',
9 'type': 'executable', 9 'type': 'executable',
10 'include_dirs' : [
11 '../src/core',
12 '../src/effects',
13 '../src/image',
14 '../src/lazy',
15 '../src/images',
16 '../src/pathops',
17 '../src/pdf',
18 '../src/pipe/utils',
19 '../src/utils',
20 '../src/utils/debugger',
21 '../tools/',
22
23 # Needed for TDStackNesterTest.
24 '../experimental/PdfViewer',
25 '../experimental/PdfViewer/src',
26 ],
10 'includes': [ 27 'includes': [
11 'pathops_unittest.gypi', 28 'pathops_unittest.gypi',
12 'tests.gypi',
13 ], 29 ],
14 'sources': [ 30 'sources': [
31 '../tests/AAClipTest.cpp',
32 '../tests/ARGBImageEncoderTest.cpp',
33 '../tests/AndroidPaintTest.cpp',
34 '../tests/AnnotationTest.cpp',
35 '../tests/AtomicTest.cpp',
36 '../tests/BBoxHierarchyTest.cpp',
37 '../tests/BitSetTest.cpp',
38 '../tests/BitmapCopyTest.cpp',
39 '../tests/BitmapGetColorTest.cpp',
40 '../tests/BitmapHasherTest.cpp',
41 '../tests/BitmapHeapTest.cpp',
42 '../tests/BitmapTest.cpp',
43 '../tests/BlitRowTest.cpp',
44 '../tests/BlurTest.cpp',
45 '../tests/CachedDecodingPixelRefTest.cpp',
46 '../tests/CanvasStateTest.cpp',
47 '../tests/CanvasTest.cpp',
48 '../tests/ChecksumTest.cpp',
49 '../tests/ClampRangeTest.cpp',
50 '../tests/ClipCacheTest.cpp',
51 '../tests/ClipCubicTest.cpp',
52 '../tests/ClipStackTest.cpp',
53 '../tests/ClipperTest.cpp',
54 '../tests/ColorFilterTest.cpp',
55 '../tests/ColorPrivTest.cpp',
56 '../tests/ColorTest.cpp',
57 '../tests/DataRefTest.cpp',
58 '../tests/DeferredCanvasTest.cpp',
59 '../tests/DequeTest.cpp',
60 '../tests/DeviceLooperTest.cpp',
61 '../tests/DiscardableMemoryPool.cpp',
62 '../tests/DiscardableMemoryTest.cpp',
63 '../tests/DocumentTest.cpp',
64 '../tests/DrawBitmapRectTest.cpp',
65 '../tests/DrawPathTest.cpp',
66 '../tests/DrawTextTest.cpp',
67 '../tests/DynamicHashTest.cpp',
68 '../tests/EmptyPathTest.cpp',
69 '../tests/ErrorTest.cpp',
70 '../tests/FillPathTest.cpp',
71 '../tests/FitsInTest.cpp',
72 '../tests/FlatDataTest.cpp',
73 '../tests/FlateTest.cpp',
74 '../tests/FontHostStreamTest.cpp',
75 '../tests/FontHostTest.cpp',
76 '../tests/FontMgrTest.cpp',
77 '../tests/FontNamesTest.cpp',
78 '../tests/FrontBufferedStreamTest.cpp',
79 '../tests/GLInterfaceValidation.cpp',
80 '../tests/GLProgramsTest.cpp',
81 '../tests/GeometryTest.cpp',
82 '../tests/GifTest.cpp',
83 '../tests/GpuBitmapCopyTest.cpp',
84 '../tests/GpuColorFilterTest.cpp',
85 '../tests/GpuDrawPathTest.cpp',
86 '../tests/GrBinHashKeyTest.cpp',
87 '../tests/GrContextFactoryTest.cpp',
88 '../tests/GrDrawTargetTest.cpp',
89 '../tests/GrMemoryPoolTest.cpp',
90 '../tests/GrRedBlackTreeTest.cpp',
91 '../tests/GrSurfaceTest.cpp',
92 '../tests/GrTBSearchTest.cpp',
93 '../tests/GradientTest.cpp',
94 '../tests/HashCacheTest.cpp',
95 '../tests/ImageCacheTest.cpp',
96 '../tests/ImageDecodingTest.cpp',
97 '../tests/ImageFilterTest.cpp',
98 '../tests/InfRectTest.cpp',
99 '../tests/JpegTest.cpp',
100 '../tests/LListTest.cpp',
101 '../tests/LayerDrawLooperTest.cpp',
102 '../tests/MD5Test.cpp',
103 '../tests/MallocPixelRefTest.cpp',
104 '../tests/MathTest.cpp',
105 '../tests/Matrix44Test.cpp',
106 '../tests/MatrixClipCollapseTest.cpp',
107 '../tests/MatrixTest.cpp',
108 '../tests/MemoryTest.cpp',
109 '../tests/MemsetTest.cpp',
110 '../tests/MessageBusTest.cpp',
111 '../tests/MetaDataTest.cpp',
112 '../tests/MipMapTest.cpp',
113 '../tests/OSPathTest.cpp',
114 '../tests/OnceTest.cpp',
115 '../tests/PDFPrimitivesTest.cpp',
116 '../tests/PackBitsTest.cpp',
117 '../tests/PaintTest.cpp',
118 '../tests/ParsePathTest.cpp',
119 '../tests/PathCoverageTest.cpp',
120 '../tests/PathMeasureTest.cpp',
121 '../tests/PathTest.cpp',
122 '../tests/PathUtilsTest.cpp',
123 '../tests/PictureTest.cpp',
124 '../tests/PictureUtilsTest.cpp',
125 '../tests/PipeTest.cpp',
126 '../tests/PixelRefTest.cpp',
127 '../tests/PointTest.cpp',
128 '../tests/PremulAlphaRoundTripTest.cpp',
129 '../tests/QuickRejectTest.cpp',
130 '../tests/RTreeTest.cpp',
131 '../tests/RandomTest.cpp',
132 '../tests/ReadPixelsTest.cpp',
133 '../tests/ReadWriteAlphaTest.cpp',
134 '../tests/Reader32Test.cpp',
135 '../tests/RefCntTest.cpp',
136 '../tests/RefDictTest.cpp',
137 '../tests/RegionTest.cpp',
138 '../tests/ResourceCacheTest.cpp',
139 '../tests/RoundRectTest.cpp',
140 '../tests/RuntimeConfigTest.cpp',
141 '../tests/SHA1Test.cpp',
142 '../tests/ScalarTest.cpp',
143 '../tests/SerializationTest.cpp',
144 '../tests/ShaderImageFilterTest.cpp',
145 '../tests/ShaderOpacityTest.cpp',
146 '../tests/SkBase64Test.cpp',
147 '../tests/SortTest.cpp',
148 '../tests/SrcOverTest.cpp',
149 '../tests/StreamTest.cpp',
150 '../tests/StringTest.cpp',
151 '../tests/StrokeTest.cpp',
152 '../tests/SurfaceTest.cpp',
153 '../tests/TLSTest.cpp',
154 '../tests/TSetTest.cpp',
155 '../tests/Test.cpp',
156 '../tests/Test.h',
157 '../tests/TestSize.cpp',
158 '../tests/TileGridTest.cpp',
159 '../tests/TracingTest.cpp',
160 '../tests/ToUnicode.cpp',
161 '../tests/Typeface.cpp',
162 '../tests/UnicodeTest.cpp',
163 '../tests/UnitTestTest.cpp',
164 '../tests/UtilsTest.cpp',
165 '../tests/WArrayTest.cpp',
166 '../tests/WritePixelsTest.cpp',
167 '../tests/Writer32Test.cpp',
168 '../tests/XfermodeTest.cpp',
15 '../tests/skia_test.cpp', 169 '../tests/skia_test.cpp',
170
171 '../experimental/PdfViewer/src/SkTDStackNester.h',
172 '../tests/TDStackNesterTest.cpp',
173
174 # Needed for PipeTest.
175 '../src/pipe/utils/SamplePipeControllers.cpp',
176
177 # Needed for MatrixClipCollapse test.
178 '../src/utils/debugger/SkDrawCommand.h',
179 '../src/utils/debugger/SkDrawCommand.cpp',
180 '../src/utils/debugger/SkDebugCanvas.h',
181 '../src/utils/debugger/SkDebugCanvas.cpp',
182 '../src/utils/debugger/SkObjectParser.h',
183 '../src/utils/debugger/SkObjectParser.cpp',
184 ],
185 'dependencies': [
186 'skia_lib.gyp:skia_lib',
187 'flags.gyp:flags',
188 'experimental.gyp:experimental',
189 'pdf.gyp:pdf',
190 'tools.gyp:picture_utils',
16 ], 191 ],
17 'conditions': [ 192 'conditions': [
18 [ 'skia_gpu == 1', { 193 [ 'skia_gpu == 1', {
19 'include_dirs': [ 194 'include_dirs': [
20 '../src/gpu', 195 '../src/gpu',
21 ], 196 ],
22 }], 197 }],
23 ], 198 ],
24 }, 199 },
25 ], 200 ],
26 } 201 }
OLDNEW
« no previous file with comments | « gyp/dm.gyp ('k') | gyp/tests.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698