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 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
143 '../tests/SrcOverTest.cpp', | 143 '../tests/SrcOverTest.cpp', |
144 '../tests/StreamTest.cpp', | 144 '../tests/StreamTest.cpp', |
145 '../tests/StringTest.cpp', | 145 '../tests/StringTest.cpp', |
146 '../tests/StrokeTest.cpp', | 146 '../tests/StrokeTest.cpp', |
147 '../tests/SurfaceTest.cpp', | 147 '../tests/SurfaceTest.cpp', |
148 '../tests/Test.cpp', | 148 '../tests/Test.cpp', |
149 '../tests/Test.h', | 149 '../tests/Test.h', |
150 '../tests/TestSize.cpp', | 150 '../tests/TestSize.cpp', |
151 '../tests/TileGridTest.cpp', | 151 '../tests/TileGridTest.cpp', |
152 '../tests/TLSTest.cpp', | 152 '../tests/TLSTest.cpp', |
| 153 '../tests/TracingTest.cpp', |
153 '../tests/TSetTest.cpp', | 154 '../tests/TSetTest.cpp', |
154 '../tests/ToUnicode.cpp', | 155 '../tests/ToUnicode.cpp', |
155 '../tests/Typeface.cpp', | 156 '../tests/Typeface.cpp', |
156 '../tests/UnicodeTest.cpp', | 157 '../tests/UnicodeTest.cpp', |
157 '../tests/UnitTestTest.cpp', | 158 '../tests/UnitTestTest.cpp', |
158 '../tests/UtilsTest.cpp', | 159 '../tests/UtilsTest.cpp', |
159 '../tests/WArrayTest.cpp', | 160 '../tests/WArrayTest.cpp', |
160 '../tests/WritePixelsTest.cpp', | 161 '../tests/WritePixelsTest.cpp', |
161 '../tests/Writer32Test.cpp', | 162 '../tests/Writer32Test.cpp', |
162 '../tests/XfermodeTest.cpp', | 163 '../tests/XfermodeTest.cpp', |
(...skipping 14 matching lines...) Expand all Loading... |
177 'conditions': [ | 178 'conditions': [ |
178 [ 'skia_gpu == 1', { | 179 [ 'skia_gpu == 1', { |
179 'include_dirs': [ | 180 'include_dirs': [ |
180 '../src/gpu', | 181 '../src/gpu', |
181 ], | 182 ], |
182 }], | 183 }], |
183 ], | 184 ], |
184 }, | 185 }, |
185 ], | 186 ], |
186 } | 187 } |
OLD | NEW |