OLD | NEW |
(Empty) | |
| 1 # GYP file to build unit tests. |
| 2 { |
| 3 'includes': [ |
| 4 'apptype_console.gypi', |
| 5 ], |
| 6 'targets': [ |
| 7 { |
| 8 'target_name': 'pathops_tests', |
| 9 'type': 'executable', |
| 10 'include_dirs' : [ |
| 11 '../src/core', |
| 12 '../src/effects', |
| 13 '../src/lazy', |
| 14 '../src/pdf', |
| 15 '../src/pipe/utils', |
| 16 '../src/utils', |
| 17 '../tools/', |
| 18 ], |
| 19 'sources': [ |
| 20 '../src/pathops/SkAddIntersections.cpp', |
| 21 '../src/pathops/SkDCubicIntersection.cpp', |
| 22 '../src/pathops/SkDCubicLineIntersection.cpp', |
| 23 '../src/pathops/SkDCubicToQuads.cpp', |
| 24 '../src/pathops/SkDLineIntersection.cpp', |
| 25 '../src/pathops/SkDQuadImplicit.cpp', |
| 26 '../src/pathops/SkDQuadIntersection.cpp', |
| 27 '../src/pathops/SkDQuadLineIntersection.cpp', |
| 28 '../src/pathops/SkIntersectionHelper.cpp', |
| 29 '../src/pathops/SkIntersections.cpp', |
| 30 '../src/pathops/SkOpAngle.cpp', |
| 31 '../src/pathops/SkOpContour.cpp', |
| 32 '../src/pathops/SkOpEdgeBuilder.cpp', |
| 33 '../src/pathops/SkOpSegment.cpp', |
| 34 '../src/pathops/SkPathOpsBounds.cpp', |
| 35 '../src/pathops/SkPathOpsCommon.cpp', |
| 36 '../src/pathops/SkPathOpsCubic.cpp', |
| 37 '../src/pathops/SkPathOpsDebug.cpp', |
| 38 '../src/pathops/SkPathOpsLine.cpp', |
| 39 '../src/pathops/SkPathOpsOp.cpp', |
| 40 '../src/pathops/SkPathOpsPoint.cpp', |
| 41 '../src/pathops/SkPathOpsQuad.cpp', |
| 42 '../src/pathops/SkPathOpsRect.cpp', |
| 43 '../src/pathops/SkPathOpsSimplify.cpp', |
| 44 '../src/pathops/SkPathOpsTriangle.cpp', |
| 45 '../src/pathops/SkPathOpsTypes.cpp', |
| 46 '../src/pathops/SkPathWriter.cpp', |
| 47 '../src/pathops/SkQuarticRoot.cpp', |
| 48 '../src/pathops/SkReduceOrder.cpp', |
| 49 '../src/pathops/SkAddIntersections.h', |
| 50 '../src/pathops/SkDQuadImplicit.h', |
| 51 '../src/pathops/SkIntersectionHelper.h', |
| 52 '../src/pathops/SkIntersections.h', |
| 53 '../src/pathops/SkLineParameters.h', |
| 54 '../src/pathops/SkOpAngle.h', |
| 55 '../src/pathops/SkOpContour.h', |
| 56 '../src/pathops/SkOpEdgeBuilder.h', |
| 57 '../src/pathops/SkOpSegment.h', |
| 58 '../src/pathops/SkOpSpan.h', |
| 59 '../src/pathops/SkPathOps.h', |
| 60 '../src/pathops/SkPathOpsBounds.h', |
| 61 '../src/pathops/SkPathOpsCommon.h', |
| 62 '../src/pathops/SkPathOpsCubic.h', |
| 63 '../src/pathops/SkPathOpsCurve.h', |
| 64 '../src/pathops/SkPathOpsDebug.h', |
| 65 '../src/pathops/SkPathOpsLine.h', |
| 66 '../src/pathops/SkPathOpsPoint.h', |
| 67 '../src/pathops/SkPathOpsQuad.h', |
| 68 '../src/pathops/SkPathOpsRect.h', |
| 69 '../src/pathops/SkPathOpsSpan.h', |
| 70 '../src/pathops/SkPathOpsTriangle.h', |
| 71 '../src/pathops/SkPathOpsTypes.h', |
| 72 '../src/pathops/SkPathWriter.h', |
| 73 '../src/pathops/SkQuarticRoot.h', |
| 74 '../src/pathops/SkReduceOrder.h', |
| 75 '../src/pathops/TSearch.h', |
| 76 '../tests/PathOpsBoundsTest.cpp', |
| 77 '../tests/PathOpsCubicIntersectionTest.cpp', |
| 78 '../tests/PathOpsCubicIntersectionTestData.cpp', |
| 79 '../tests/PathOpsCubicLineIntersectionTest.cpp', |
| 80 '../tests/PathOpsCubicReduceOrderTest.cpp', |
| 81 '../tests/PathOpsCubicToQuadsTest.cpp', |
| 82 '../tests/PathOpsDCubicTest.cpp', |
| 83 '../tests/PathOpsDLineTest.cpp', |
| 84 '../tests/PathOpsDPointTest.cpp', |
| 85 '../tests/PathOpsDQuadTest.cpp', |
| 86 '../tests/PathOpsDRectTest.cpp', |
| 87 '../tests/PathOpsDTriangleTest.cpp', |
| 88 '../tests/PathOpsDVector.cpp', |
| 89 '../tests/PathOpsDVectorTest.cpp', |
| 90 '../tests/PathOpsExtendedTest.cpp', |
| 91 '../tests/PathOpsLineIntersectionTest.cpp', |
| 92 '../tests/PathOpsLineParametetersTest.cpp', |
| 93 '../tests/PathOpsOpCubicThreadedTest.cpp', |
| 94 '../tests/PathOpsOpRectThreadedTest.cpp', |
| 95 '../tests/PathOpsOpTest.cpp', |
| 96 '../tests/PathOpsQuadIntersectionTest.cpp', |
| 97 '../tests/PathOpsQuadIntersectionTestData.cpp', |
| 98 '../tests/PathOpsQuadLineIntersectionTest.cpp', |
| 99 '../tests/PathOpsQuadLineIntersectionThreadedTest.cpp', |
| 100 '../tests/PathOpsQuadParameterizationTest.cpp', |
| 101 '../tests/PathOpsSimplifyDegenerateThreadedTest.cpp', |
| 102 '../tests/PathOpsSimplifyQuadralateralsThreadedTest.cpp', |
| 103 '../tests/PathOpsSimplifyQuadThreadedTest.cpp', |
| 104 '../tests/PathOpsSimplifyRectThreadedTest.cpp', |
| 105 '../tests/PathOpsSimplifyTest.cpp', |
| 106 '../tests/PathOpsSimplifyTrianglesThreadedTest.cpp', |
| 107 '../tests/PathOpsTestCommon.cpp', |
| 108 '../tests/PathOpsCubicIntersectionTestData.h', |
| 109 '../tests/PathOpsExtendedTest.h', |
| 110 '../tests/PathOpsQuadIntersectionTestData.h', |
| 111 '../tests/PathOpsTestCommon.h', |
| 112 '../tests/Test.cpp', |
| 113 '../tests/skia_test.cpp', |
| 114 '../tests/Test.h', |
| 115 ], |
| 116 'dependencies': [ |
| 117 'skia_base_libs.gyp:skia_base_libs', |
| 118 'effects.gyp:effects', |
| 119 'images.gyp:images', |
| 120 'utils.gyp:utils', |
| 121 ], |
| 122 'conditions': [ |
| 123 [ 'skia_gpu == 1', { |
| 124 'include_dirs': [ |
| 125 '../src/gpu', |
| 126 ], |
| 127 }], |
| 128 ], |
| 129 }, |
| 130 ], |
| 131 } |
| 132 |
| 133 # Local Variables: |
| 134 # tab-width:2 |
| 135 # indent-tabs-mode:nil |
| 136 # End: |
| 137 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |