OLD | NEW |
---|---|
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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
134 'include_dirs': [ | 135 'include_dirs': [ |
135 '../src/gpu', | 136 '../src/gpu', |
136 ], | 137 ], |
137 }], | 138 }], |
138 [ 'skia_os == "nacl"', { | 139 [ 'skia_os == "nacl"', { |
139 # CityHash is not supported on NaCl because the NaCl toolchain is | 140 # CityHash is not supported on NaCl because the NaCl toolchain is |
140 # missing byteswap.h which is needed by CityHash. | 141 # missing byteswap.h which is needed by CityHash. |
141 # TODO(borenet): Find a way to either provide this dependency or | 142 # TODO(borenet): Find a way to either provide this dependency or |
142 # replace it. | 143 # replace it. |
143 'sources!': [ | 144 'sources!': [ |
145 '../tests/BitmapHasherTest.cpp', | |
epoger
2013/04/11 17:39:40
ChecksumTest directly uses CityHash, and BitmapHas
| |
144 '../tests/ChecksumTest.cpp', | 146 '../tests/ChecksumTest.cpp', |
145 ], | 147 ], |
146 }], | 148 }], |
147 ], | 149 ], |
148 }, | 150 }, |
149 ], | 151 ], |
150 } | 152 } |
151 | 153 |
152 # Local Variables: | 154 # Local Variables: |
153 # tab-width:2 | 155 # tab-width:2 |
154 # indent-tabs-mode:nil | 156 # indent-tabs-mode:nil |
155 # End: | 157 # End: |
156 # vim: set expandtab tabstop=2 shiftwidth=2: | 158 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |