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' : [ |
(...skipping 16 matching lines...) Expand all Loading... |
27 '../tests/AtomicTest.cpp', | 27 '../tests/AtomicTest.cpp', |
28 '../tests/BitmapCopyTest.cpp', | 28 '../tests/BitmapCopyTest.cpp', |
29 '../tests/BitmapFactoryTest.cpp', | 29 '../tests/BitmapFactoryTest.cpp', |
30 '../tests/BitmapGetColorTest.cpp', | 30 '../tests/BitmapGetColorTest.cpp', |
31 '../tests/BitmapHasherTest.cpp', | 31 '../tests/BitmapHasherTest.cpp', |
32 '../tests/BitmapHeapTest.cpp', | 32 '../tests/BitmapHeapTest.cpp', |
33 '../tests/BitSetTest.cpp', | 33 '../tests/BitSetTest.cpp', |
34 '../tests/BlitRowTest.cpp', | 34 '../tests/BlitRowTest.cpp', |
35 '../tests/BlurTest.cpp', | 35 '../tests/BlurTest.cpp', |
36 '../tests/CanvasTest.cpp', | 36 '../tests/CanvasTest.cpp', |
| 37 '../tests/CanvasStateTest.cpp', |
37 '../tests/ChecksumTest.cpp', | 38 '../tests/ChecksumTest.cpp', |
38 '../tests/ClampRangeTest.cpp', | 39 '../tests/ClampRangeTest.cpp', |
39 '../tests/ClipCacheTest.cpp', | 40 '../tests/ClipCacheTest.cpp', |
40 '../tests/ClipCubicTest.cpp', | 41 '../tests/ClipCubicTest.cpp', |
41 '../tests/ClipStackTest.cpp', | 42 '../tests/ClipStackTest.cpp', |
42 '../tests/ClipperTest.cpp', | 43 '../tests/ClipperTest.cpp', |
43 '../tests/ColorFilterTest.cpp', | 44 '../tests/ColorFilterTest.cpp', |
44 '../tests/ColorTest.cpp', | 45 '../tests/ColorTest.cpp', |
45 '../tests/DataRefTest.cpp', | 46 '../tests/DataRefTest.cpp', |
46 '../tests/DeferredCanvasTest.cpp', | 47 '../tests/DeferredCanvasTest.cpp', |
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
163 ], | 164 ], |
164 }, | 165 }, |
165 ], | 166 ], |
166 } | 167 } |
167 | 168 |
168 # Local Variables: | 169 # Local Variables: |
169 # tab-width:2 | 170 # tab-width:2 |
170 # indent-tabs-mode:nil | 171 # indent-tabs-mode:nil |
171 # End: | 172 # End: |
172 # vim: set expandtab tabstop=2 shiftwidth=2: | 173 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |