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

Side by Side Diff: gyp/tests.gyp

Issue 139093003: Collapse matrix & clip stack in PictureRecord (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: update to ToT 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 | src/core/SkPictureRecord.h » ('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 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
162 '../tests/WritePixelsTest.cpp', 163 '../tests/WritePixelsTest.cpp',
163 '../tests/Writer32Test.cpp', 164 '../tests/Writer32Test.cpp',
164 '../tests/XfermodeTest.cpp', 165 '../tests/XfermodeTest.cpp',
165 '../tests/skia_test.cpp', 166 '../tests/skia_test.cpp',
166 167
167 '../experimental/PdfViewer/src/SkTDStackNester.h', 168 '../experimental/PdfViewer/src/SkTDStackNester.h',
168 '../tests/TDStackNesterTest.cpp', 169 '../tests/TDStackNesterTest.cpp',
169 170
170 # Needed for PipeTest. 171 # Needed for PipeTest.
171 '../src/pipe/utils/SamplePipeControllers.cpp', 172 '../src/pipe/utils/SamplePipeControllers.cpp',
173
174 '../src/utils/debugger/SkDrawCommand.h',
175 '../src/utils/debugger/SkDrawCommand.cpp',
176 '../src/utils/debugger/SkDebugCanvas.h',
177 '../src/utils/debugger/SkDebugCanvas.cpp',
178 '../src/utils/debugger/SkObjectParser.h',
179 '../src/utils/debugger/SkObjectParser.cpp',
172 ], 180 ],
173 'dependencies': [ 181 'dependencies': [
174 'skia_lib.gyp:skia_lib', 182 'skia_lib.gyp:skia_lib',
175 'flags.gyp:flags', 183 'flags.gyp:flags',
176 'experimental.gyp:experimental', 184 'experimental.gyp:experimental',
177 'pdf.gyp:pdf', 185 'pdf.gyp:pdf',
178 'tools.gyp:picture_utils', 186 'tools.gyp:picture_utils',
179 ], 187 ],
180 'conditions': [ 188 'conditions': [
181 [ 'skia_gpu == 1', { 189 [ 'skia_gpu == 1', {
182 'include_dirs': [ 190 'include_dirs': [
183 '../src/gpu', 191 '../src/gpu',
184 ], 192 ],
185 }], 193 }],
186 ], 194 ],
187 }, 195 },
188 ], 196 ],
189 } 197 }
OLDNEW
« no previous file with comments | « no previous file | src/core/SkPictureRecord.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698