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

Side by Side Diff: gyp/tests.gyp

Issue 133003006: Add test harness for matrix/clip state collapsing (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Cleaned up 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | tests/MatrixClipCollapseTest.cpp » ('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' : [ 10 'include_dirs' : [
11 '../src/core', 11 '../src/core',
12 '../src/effects', 12 '../src/effects',
13 '../src/image', 13 '../src/image',
14 '../src/lazy', 14 '../src/lazy',
15 '../src/images', 15 '../src/images',
16 '../src/pathops', 16 '../src/pathops',
17 '../src/pdf', 17 '../src/pdf',
18 '../src/pipe/utils', 18 '../src/pipe/utils',
19 '../src/utils', 19 '../src/utils',
20 '../src/utils/debugger',
20 '../tools/', 21 '../tools/',
21 22
22 # Needed for TDStackNesterTest. 23 # Needed for TDStackNesterTest.
23 '../experimental/PdfViewer', 24 '../experimental/PdfViewer',
24 '../experimental/PdfViewer/src', 25 '../experimental/PdfViewer/src',
25 ], 26 ],
26 'includes': [ 27 'includes': [
27 'pathops_unittest.gypi', 28 'pathops_unittest.gypi',
28 ], 29 ],
29 'sources': [ 30 'sources': [
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 '../tests/ImageDecodingTest.cpp', 96 '../tests/ImageDecodingTest.cpp',
96 '../tests/ImageFilterTest.cpp', 97 '../tests/ImageFilterTest.cpp',
97 '../tests/InfRectTest.cpp', 98 '../tests/InfRectTest.cpp',
98 '../tests/JpegTest.cpp', 99 '../tests/JpegTest.cpp',
99 '../tests/LListTest.cpp', 100 '../tests/LListTest.cpp',
100 '../tests/LayerDrawLooperTest.cpp', 101 '../tests/LayerDrawLooperTest.cpp',
101 '../tests/MD5Test.cpp', 102 '../tests/MD5Test.cpp',
102 '../tests/MallocPixelRefTest.cpp', 103 '../tests/MallocPixelRefTest.cpp',
103 '../tests/MathTest.cpp', 104 '../tests/MathTest.cpp',
104 '../tests/Matrix44Test.cpp', 105 '../tests/Matrix44Test.cpp',
106 '../tests/MatrixClipCollapseTest.cpp',
105 '../tests/MatrixTest.cpp', 107 '../tests/MatrixTest.cpp',
106 '../tests/MemoryTest.cpp', 108 '../tests/MemoryTest.cpp',
107 '../tests/MemsetTest.cpp', 109 '../tests/MemsetTest.cpp',
108 '../tests/MessageBusTest.cpp', 110 '../tests/MessageBusTest.cpp',
109 '../tests/MetaDataTest.cpp', 111 '../tests/MetaDataTest.cpp',
110 '../tests/MipMapTest.cpp', 112 '../tests/MipMapTest.cpp',
111 '../tests/OSPathTest.cpp', 113 '../tests/OSPathTest.cpp',
112 '../tests/OnceTest.cpp', 114 '../tests/OnceTest.cpp',
113 '../tests/PDFPrimitivesTest.cpp', 115 '../tests/PDFPrimitivesTest.cpp',
114 '../tests/PackBitsTest.cpp', 116 '../tests/PackBitsTest.cpp',
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 '../tests/WritePixelsTest.cpp', 166 '../tests/WritePixelsTest.cpp',
165 '../tests/Writer32Test.cpp', 167 '../tests/Writer32Test.cpp',
166 '../tests/XfermodeTest.cpp', 168 '../tests/XfermodeTest.cpp',
167 '../tests/skia_test.cpp', 169 '../tests/skia_test.cpp',
168 170
169 '../experimental/PdfViewer/src/SkTDStackNester.h', 171 '../experimental/PdfViewer/src/SkTDStackNester.h',
170 '../tests/TDStackNesterTest.cpp', 172 '../tests/TDStackNesterTest.cpp',
171 173
172 # Needed for PipeTest. 174 # Needed for PipeTest.
173 '../src/pipe/utils/SamplePipeControllers.cpp', 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',
174 ], 184 ],
175 'dependencies': [ 185 'dependencies': [
176 'skia_lib.gyp:skia_lib', 186 'skia_lib.gyp:skia_lib',
177 'flags.gyp:flags', 187 'flags.gyp:flags',
178 'experimental.gyp:experimental', 188 'experimental.gyp:experimental',
179 'pdf.gyp:pdf', 189 'pdf.gyp:pdf',
180 'tools.gyp:picture_utils', 190 'tools.gyp:picture_utils',
181 ], 191 ],
182 'conditions': [ 192 'conditions': [
183 [ 'skia_gpu == 1', { 193 [ 'skia_gpu == 1', {
184 'include_dirs': [ 194 'include_dirs': [
185 '../src/gpu', 195 '../src/gpu',
186 ], 196 ],
187 }], 197 }],
188 ], 198 ],
189 }, 199 },
190 ], 200 ],
191 } 201 }
OLDNEW
« no previous file with comments | « no previous file | tests/MatrixClipCollapseTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698