OLD | NEW |
| 1 # Common gypi for pathops unit tests. |
1 { | 2 { |
| 3 'include_dirs': [ |
| 4 '../src/core', |
| 5 '../src/effects', |
| 6 '../src/lazy', |
| 7 '../src/pathops', |
| 8 '../src/pipe/utils', |
| 9 '../src/utils', |
| 10 ], |
| 11 'dependencies': [ |
| 12 'flags.gyp:flags', |
| 13 'skia_lib.gyp:skia_lib', |
| 14 'tools.gyp:resources', |
| 15 ], |
2 'sources': [ | 16 'sources': [ |
| 17 '../tests/Test.cpp', |
| 18 '../tests/Test.h', |
| 19 |
3 '../tests/PathOpsAngleTest.cpp', | 20 '../tests/PathOpsAngleTest.cpp', |
4 '../tests/PathOpsBoundsTest.cpp', | 21 '../tests/PathOpsBoundsTest.cpp', |
5 '../tests/PathOpsCubicIntersectionTest.cpp', | 22 '../tests/PathOpsCubicIntersectionTest.cpp', |
6 '../tests/PathOpsCubicIntersectionTestData.cpp', | 23 '../tests/PathOpsCubicIntersectionTestData.cpp', |
7 '../tests/PathOpsCubicLineIntersectionTest.cpp', | 24 '../tests/PathOpsCubicLineIntersectionTest.cpp', |
8 '../tests/PathOpsCubicQuadIntersectionTest.cpp', | 25 '../tests/PathOpsCubicQuadIntersectionTest.cpp', |
9 '../tests/PathOpsCubicReduceOrderTest.cpp', | 26 '../tests/PathOpsCubicReduceOrderTest.cpp', |
10 '../tests/PathOpsCubicToQuadsTest.cpp', | 27 '../tests/PathOpsCubicToQuadsTest.cpp', |
11 '../tests/PathOpsDCubicTest.cpp', | 28 '../tests/PathOpsDCubicTest.cpp', |
12 '../tests/PathOpsDLineTest.cpp', | 29 '../tests/PathOpsDLineTest.cpp', |
(...skipping 18 matching lines...) Expand all Loading... |
31 '../tests/PathOpsSimplifyDegenerateThreadedTest.cpp', | 48 '../tests/PathOpsSimplifyDegenerateThreadedTest.cpp', |
32 '../tests/PathOpsSimplifyFailTest.cpp', | 49 '../tests/PathOpsSimplifyFailTest.cpp', |
33 '../tests/PathOpsSimplifyQuadralateralsThreadedTest.cpp', | 50 '../tests/PathOpsSimplifyQuadralateralsThreadedTest.cpp', |
34 '../tests/PathOpsSimplifyQuadThreadedTest.cpp', | 51 '../tests/PathOpsSimplifyQuadThreadedTest.cpp', |
35 '../tests/PathOpsSimplifyRectThreadedTest.cpp', | 52 '../tests/PathOpsSimplifyRectThreadedTest.cpp', |
36 '../tests/PathOpsSimplifyTest.cpp', | 53 '../tests/PathOpsSimplifyTest.cpp', |
37 '../tests/PathOpsSimplifyTrianglesThreadedTest.cpp', | 54 '../tests/PathOpsSimplifyTrianglesThreadedTest.cpp', |
38 '../tests/PathOpsSkpTest.cpp', | 55 '../tests/PathOpsSkpTest.cpp', |
39 '../tests/PathOpsTestCommon.cpp', | 56 '../tests/PathOpsTestCommon.cpp', |
40 '../tests/PathOpsThreadedCommon.cpp', | 57 '../tests/PathOpsThreadedCommon.cpp', |
| 58 '../tests/PathOpsTightBoundsTest.cpp', |
41 '../tests/PathOpsCubicIntersectionTestData.h', | 59 '../tests/PathOpsCubicIntersectionTestData.h', |
42 '../tests/PathOpsExtendedTest.h', | 60 '../tests/PathOpsExtendedTest.h', |
43 '../tests/PathOpsQuadIntersectionTestData.h', | 61 '../tests/PathOpsQuadIntersectionTestData.h', |
44 '../tests/PathOpsTestCommon.h', | 62 '../tests/PathOpsTestCommon.h', |
45 '../tests/PathOpsThreadedCommon.h', | 63 '../tests/PathOpsThreadedCommon.h', |
46 ], | 64 ], |
47 } | 65 } |
OLD | NEW |