| OLD | NEW |
| 1 # Copyright 2016 Google Inc. | 1 # Copyright 2016 Google Inc. |
| 2 # | 2 # |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 | 5 |
| 6 # Things are easiest for everyone if these source paths are absolute. | 6 # Things are easiest for everyone if these source paths are absolute. |
| 7 _tests = get_path_info("../tests", "abspath") | 7 _tests = get_path_info("../tests", "abspath") |
| 8 | 8 |
| 9 tests_sources = [ | 9 tests_sources = [ |
| 10 "$_tests/AAClipTest.cpp", | 10 "$_tests/AAClipTest.cpp", |
| (...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 197 "$_tests/SkImageTest.cpp", | 197 "$_tests/SkImageTest.cpp", |
| 198 "$_tests/SkLinearBitmapPipelineTest.cpp", | 198 "$_tests/SkLinearBitmapPipelineTest.cpp", |
| 199 "$_tests/SkLiteDLTest.cpp", | 199 "$_tests/SkLiteDLTest.cpp", |
| 200 "$_tests/SkNxTest.cpp", | 200 "$_tests/SkNxTest.cpp", |
| 201 "$_tests/SkPEGTest.cpp", | 201 "$_tests/SkPEGTest.cpp", |
| 202 "$_tests/SkRasterPipelineTest.cpp", | 202 "$_tests/SkRasterPipelineTest.cpp", |
| 203 "$_tests/SkResourceCacheTest.cpp", | 203 "$_tests/SkResourceCacheTest.cpp", |
| 204 "$_tests/SkSharedMutexTest.cpp", | 204 "$_tests/SkSharedMutexTest.cpp", |
| 205 "$_tests/SkSLErrorTest.cpp", | 205 "$_tests/SkSLErrorTest.cpp", |
| 206 "$_tests/SkSLGLSLTest.cpp", | 206 "$_tests/SkSLGLSLTest.cpp", |
| 207 "$_tests/SkSLMemoryLayoutTest.cpp", |
| 207 "$_tests/SmallAllocatorTest.cpp", | 208 "$_tests/SmallAllocatorTest.cpp", |
| 208 "$_tests/SortTest.cpp", | 209 "$_tests/SortTest.cpp", |
| 209 "$_tests/SpecialImageTest.cpp", | 210 "$_tests/SpecialImageTest.cpp", |
| 210 "$_tests/SpecialSurfaceTest.cpp", | 211 "$_tests/SpecialSurfaceTest.cpp", |
| 211 "$_tests/SrcOverTest.cpp", | 212 "$_tests/SrcOverTest.cpp", |
| 212 "$_tests/SRGBMipMapTest.cpp", | 213 "$_tests/SRGBMipMapTest.cpp", |
| 213 "$_tests/SRGBReadWritePixelsTest.cpp", | 214 "$_tests/SRGBReadWritePixelsTest.cpp", |
| 214 "$_tests/SRGBTest.cpp", | 215 "$_tests/SRGBTest.cpp", |
| 215 "$_tests/StreamTest.cpp", | 216 "$_tests/StreamTest.cpp", |
| 216 "$_tests/StringTest.cpp", | 217 "$_tests/StringTest.cpp", |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 299 "$_tests/PathOpsSimplifyTest.cpp", | 300 "$_tests/PathOpsSimplifyTest.cpp", |
| 300 "$_tests/PathOpsSimplifyTrianglesThreadedTest.cpp", | 301 "$_tests/PathOpsSimplifyTrianglesThreadedTest.cpp", |
| 301 "$_tests/PathOpsSkpTest.cpp", | 302 "$_tests/PathOpsSkpTest.cpp", |
| 302 "$_tests/PathOpsTestCommon.cpp", | 303 "$_tests/PathOpsTestCommon.cpp", |
| 303 "$_tests/PathOpsThreadedCommon.cpp", | 304 "$_tests/PathOpsThreadedCommon.cpp", |
| 304 "$_tests/PathOpsThreeWayTest.cpp", | 305 "$_tests/PathOpsThreeWayTest.cpp", |
| 305 "$_tests/PathOpsTigerTest.cpp", | 306 "$_tests/PathOpsTigerTest.cpp", |
| 306 "$_tests/PathOpsTightBoundsTest.cpp", | 307 "$_tests/PathOpsTightBoundsTest.cpp", |
| 307 "$_tests/PathOpsTypesTest.cpp", | 308 "$_tests/PathOpsTypesTest.cpp", |
| 308 ] | 309 ] |
| OLD | NEW |