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

Side by Side Diff: gyp/tests.gyp

Issue 23589007: Add infrastructure for testing the debugger code. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 7 years, 3 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 | « gyp/debugger.gyp ('k') | tests/DebugCanvasTest.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' : [
(...skipping 26 matching lines...) Expand all
37 '../tests/CanvasStateTest.cpp', 37 '../tests/CanvasStateTest.cpp',
38 '../tests/ChecksumTest.cpp', 38 '../tests/ChecksumTest.cpp',
39 '../tests/ClampRangeTest.cpp', 39 '../tests/ClampRangeTest.cpp',
40 '../tests/ClipCacheTest.cpp', 40 '../tests/ClipCacheTest.cpp',
41 '../tests/ClipCubicTest.cpp', 41 '../tests/ClipCubicTest.cpp',
42 '../tests/ClipStackTest.cpp', 42 '../tests/ClipStackTest.cpp',
43 '../tests/ClipperTest.cpp', 43 '../tests/ClipperTest.cpp',
44 '../tests/ColorFilterTest.cpp', 44 '../tests/ColorFilterTest.cpp',
45 '../tests/ColorTest.cpp', 45 '../tests/ColorTest.cpp',
46 '../tests/DataRefTest.cpp', 46 '../tests/DataRefTest.cpp',
47 '../tests/DebugCanvasTest.cpp',
47 '../tests/DeferredCanvasTest.cpp', 48 '../tests/DeferredCanvasTest.cpp',
48 '../tests/DequeTest.cpp', 49 '../tests/DequeTest.cpp',
49 '../tests/DrawBitmapRectTest.cpp', 50 '../tests/DrawBitmapRectTest.cpp',
50 '../tests/DrawPathTest.cpp', 51 '../tests/DrawPathTest.cpp',
51 '../tests/DrawTextTest.cpp', 52 '../tests/DrawTextTest.cpp',
52 '../tests/DynamicHashTest.cpp', 53 '../tests/DynamicHashTest.cpp',
53 '../tests/EmptyPathTest.cpp', 54 '../tests/EmptyPathTest.cpp',
54 '../tests/ErrorTest.cpp', 55 '../tests/ErrorTest.cpp',
55 '../tests/FillPathTest.cpp', 56 '../tests/FillPathTest.cpp',
56 '../tests/FitsInTest.cpp', 57 '../tests/FitsInTest.cpp',
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 138
138 # Needed for PipeTest. 139 # Needed for PipeTest.
139 '../src/pipe/utils/SamplePipeControllers.cpp', 140 '../src/pipe/utils/SamplePipeControllers.cpp',
140 ], 141 ],
141 'dependencies': [ 142 'dependencies': [
142 'skia_lib.gyp:skia_lib', 143 'skia_lib.gyp:skia_lib',
143 'flags.gyp:flags', 144 'flags.gyp:flags',
144 'experimental.gyp:experimental', 145 'experimental.gyp:experimental',
145 'pdf.gyp:pdf', 146 'pdf.gyp:pdf',
146 'tools.gyp:picture_utils', 147 'tools.gyp:picture_utils',
148 'debugger.gyp:debugger_lib',
147 ], 149 ],
148 'conditions': [ 150 'conditions': [
149 [ 'skia_gpu == 1', { 151 [ 'skia_gpu == 1', {
150 'include_dirs': [ 152 'include_dirs': [
151 '../src/gpu', 153 '../src/gpu',
152 ], 154 ],
153 }], 155 }],
154 [ 'skia_os == "nacl"', { 156 [ 'skia_os == "nacl"', {
155 # CityHash is not supported on NaCl because the NaCl toolchain is 157 # CityHash is not supported on NaCl because the NaCl toolchain is
156 # missing byteswap.h which is needed by CityHash. 158 # missing byteswap.h which is needed by CityHash.
157 # TODO(borenet): Find a way to either provide this dependency or 159 # TODO(borenet): Find a way to either provide this dependency or
158 # replace it. 160 # replace it.
159 'sources!': [ 161 'sources!': [
160 '../tests/BitmapHasherTest.cpp', 162 '../tests/BitmapHasherTest.cpp',
161 '../tests/ChecksumTest.cpp', 163 '../tests/ChecksumTest.cpp',
162 ], 164 ],
163 }], 165 }],
164 ], 166 ],
165 }, 167 },
166 ], 168 ],
167 } 169 }
168 170
169 # Local Variables: 171 # Local Variables:
170 # tab-width:2 172 # tab-width:2
171 # indent-tabs-mode:nil 173 # indent-tabs-mode:nil
172 # End: 174 # End:
173 # vim: set expandtab tabstop=2 shiftwidth=2: 175 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « gyp/debugger.gyp ('k') | tests/DebugCanvasTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698