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 14 matching lines...) Expand all Loading... |
25 ], | 25 ], |
26 'includes': [ | 26 'includes': [ |
27 'pathops_unittest.gypi', | 27 'pathops_unittest.gypi', |
28 ], | 28 ], |
29 'sources': [ | 29 'sources': [ |
30 '../tests/AAClipTest.cpp', | 30 '../tests/AAClipTest.cpp', |
31 '../tests/AndroidPaintTest.cpp', | 31 '../tests/AndroidPaintTest.cpp', |
32 '../tests/AnnotationTest.cpp', | 32 '../tests/AnnotationTest.cpp', |
33 '../tests/ARGBImageEncoderTest.cpp', | 33 '../tests/ARGBImageEncoderTest.cpp', |
34 '../tests/AtomicTest.cpp', | 34 '../tests/AtomicTest.cpp', |
| 35 '../tests/BBoxHierarchyTest.cpp', |
35 '../tests/BitmapTest.cpp', | 36 '../tests/BitmapTest.cpp', |
36 '../tests/BitmapCopyTest.cpp', | 37 '../tests/BitmapCopyTest.cpp', |
37 '../tests/BitmapGetColorTest.cpp', | 38 '../tests/BitmapGetColorTest.cpp', |
38 '../tests/BitmapHasherTest.cpp', | 39 '../tests/BitmapHasherTest.cpp', |
39 '../tests/BitmapHeapTest.cpp', | 40 '../tests/BitmapHeapTest.cpp', |
40 '../tests/BitSetTest.cpp', | 41 '../tests/BitSetTest.cpp', |
41 '../tests/BlitRowTest.cpp', | 42 '../tests/BlitRowTest.cpp', |
42 '../tests/BlurTest.cpp', | 43 '../tests/BlurTest.cpp', |
43 '../tests/CachedDecodingPixelRefTest.cpp', | 44 '../tests/CachedDecodingPixelRefTest.cpp', |
44 '../tests/CanvasTest.cpp', | 45 '../tests/CanvasTest.cpp', |
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
125 '../tests/RandomTest.cpp', | 126 '../tests/RandomTest.cpp', |
126 '../tests/Reader32Test.cpp', | 127 '../tests/Reader32Test.cpp', |
127 '../tests/ReadPixelsTest.cpp', | 128 '../tests/ReadPixelsTest.cpp', |
128 '../tests/ReadWriteAlphaTest.cpp', | 129 '../tests/ReadWriteAlphaTest.cpp', |
129 '../tests/RefCntTest.cpp', | 130 '../tests/RefCntTest.cpp', |
130 '../tests/RefDictTest.cpp', | 131 '../tests/RefDictTest.cpp', |
131 '../tests/RegionTest.cpp', | 132 '../tests/RegionTest.cpp', |
132 '../tests/ResourceCacheTest.cpp', | 133 '../tests/ResourceCacheTest.cpp', |
133 '../tests/RoundRectTest.cpp', | 134 '../tests/RoundRectTest.cpp', |
134 '../tests/RuntimeConfigTest.cpp', | 135 '../tests/RuntimeConfigTest.cpp', |
135 '../tests/RTreeTest.cpp', | |
136 '../tests/SHA1Test.cpp', | 136 '../tests/SHA1Test.cpp', |
137 '../tests/ScalarTest.cpp', | 137 '../tests/ScalarTest.cpp', |
138 '../tests/SerializationTest.cpp', | 138 '../tests/SerializationTest.cpp', |
139 '../tests/ShaderImageFilterTest.cpp', | 139 '../tests/ShaderImageFilterTest.cpp', |
140 '../tests/ShaderOpacityTest.cpp', | 140 '../tests/ShaderOpacityTest.cpp', |
141 '../tests/skia_test.cpp', | 141 '../tests/skia_test.cpp', |
142 '../tests/SortTest.cpp', | 142 '../tests/SortTest.cpp', |
143 '../tests/SrcOverTest.cpp', | 143 '../tests/SrcOverTest.cpp', |
144 '../tests/StreamTest.cpp', | 144 '../tests/StreamTest.cpp', |
145 '../tests/StringTest.cpp', | 145 '../tests/StringTest.cpp', |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
177 'conditions': [ | 177 'conditions': [ |
178 [ 'skia_gpu == 1', { | 178 [ 'skia_gpu == 1', { |
179 'include_dirs': [ | 179 'include_dirs': [ |
180 '../src/gpu', | 180 '../src/gpu', |
181 ], | 181 ], |
182 }], | 182 }], |
183 ], | 183 ], |
184 }, | 184 }, |
185 ], | 185 ], |
186 } | 186 } |
OLD | NEW |