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

Side by Side Diff: gyp/tests.gyp

Issue 14170010: rename SkBitmapChecksummer as SkBitmapHasher, and prepare for it to possibly use (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: sync_to_r8638 Created 7 years, 8 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 | « gm/gmmain.cpp ('k') | gyp/utils.gyp » ('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/lazy', 13 '../src/lazy',
14 '../src/pdf', 14 '../src/pdf',
15 '../src/pipe/utils', 15 '../src/pipe/utils',
16 '../src/utils', 16 '../src/utils',
17 '../tools/', 17 '../tools/',
18 ], 18 ],
19 'sources': [ 19 'sources': [
20 '../tests/AAClipTest.cpp', 20 '../tests/AAClipTest.cpp',
21 '../tests/AnnotationTest.cpp', 21 '../tests/AnnotationTest.cpp',
22 '../tests/AtomicTest.cpp', 22 '../tests/AtomicTest.cpp',
23 '../tests/BitmapCopyTest.cpp', 23 '../tests/BitmapCopyTest.cpp',
24 '../tests/BitmapFactoryTest.cpp', 24 '../tests/BitmapFactoryTest.cpp',
25 '../tests/BitmapGetColorTest.cpp', 25 '../tests/BitmapGetColorTest.cpp',
26 '../tests/BitmapHasherTest.cpp',
26 '../tests/BitmapHeapTest.cpp', 27 '../tests/BitmapHeapTest.cpp',
27 '../tests/BitmapTransformerTest.cpp', 28 '../tests/BitmapTransformerTest.cpp',
28 '../tests/BitSetTest.cpp', 29 '../tests/BitSetTest.cpp',
29 '../tests/BlitRowTest.cpp', 30 '../tests/BlitRowTest.cpp',
30 '../tests/BlurTest.cpp', 31 '../tests/BlurTest.cpp',
31 '../tests/CanvasTest.cpp', 32 '../tests/CanvasTest.cpp',
32 '../tests/ChecksumTest.cpp', 33 '../tests/ChecksumTest.cpp',
33 '../tests/ClampRangeTest.cpp', 34 '../tests/ClampRangeTest.cpp',
34 '../tests/ClipCacheTest.cpp', 35 '../tests/ClipCacheTest.cpp',
35 '../tests/ClipCubicTest.cpp', 36 '../tests/ClipCubicTest.cpp',
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 'include_dirs': [ 137 'include_dirs': [
137 '../src/gpu', 138 '../src/gpu',
138 ], 139 ],
139 }], 140 }],
140 [ 'skia_os == "nacl"', { 141 [ 'skia_os == "nacl"', {
141 # CityHash is not supported on NaCl because the NaCl toolchain is 142 # CityHash is not supported on NaCl because the NaCl toolchain is
142 # missing byteswap.h which is needed by CityHash. 143 # missing byteswap.h which is needed by CityHash.
143 # TODO(borenet): Find a way to either provide this dependency or 144 # TODO(borenet): Find a way to either provide this dependency or
144 # replace it. 145 # replace it.
145 'sources!': [ 146 'sources!': [
147 '../tests/BitmapHasherTest.cpp',
146 '../tests/ChecksumTest.cpp', 148 '../tests/ChecksumTest.cpp',
147 ], 149 ],
148 }], 150 }],
149 ], 151 ],
150 }, 152 },
151 ], 153 ],
152 } 154 }
153 155
154 # Local Variables: 156 # Local Variables:
155 # tab-width:2 157 # tab-width:2
156 # indent-tabs-mode:nil 158 # indent-tabs-mode:nil
157 # End: 159 # End:
158 # vim: set expandtab tabstop=2 shiftwidth=2: 160 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « gm/gmmain.cpp ('k') | gyp/utils.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698