blob: 75e824b9fb427959a0a4aabe05fe75546660e3a1 [file] [log] [blame]
scroggo3e562272015-03-25 10:22:41 -07001# Copyright 2015 Google Inc.
2#
3# Use of this source code is governed by a BSD-style license that can be
4# found in the LICENSE file.
caryclarka8d2ffb2014-06-24 07:55:11 -07005# Common gypi for pathops unit tests.
caryclark@google.com7abfa492013-04-12 11:59:41 +00006{
caryclarka8d2ffb2014-06-24 07:55:11 -07007 'include_dirs': [
8 '../src/core',
9 '../src/effects',
10 '../src/lazy',
11 '../src/pathops',
12 '../src/pipe/utils',
13 '../src/utils',
14 ],
15 'dependencies': [
16 'flags.gyp:flags',
17 'skia_lib.gyp:skia_lib',
18 'tools.gyp:resources',
19 ],
caryclark@google.com7abfa492013-04-12 11:59:41 +000020 'sources': [
caryclarka8d2ffb2014-06-24 07:55:11 -070021 '../tests/Test.cpp',
22 '../tests/Test.h',
23
caryclark@google.comad65a3e2013-04-15 19:13:59 +000024 '../tests/PathOpsAngleTest.cpp',
caryclark@google.com7abfa492013-04-12 11:59:41 +000025 '../tests/PathOpsBoundsTest.cpp',
caryclark54359292015-03-26 07:52:43 -070026 '../tests/PathOpsBuilderTest.cpp',
27 '../tests/PathOpsBuildUseTest.cpp',
caryclark1049f122015-04-20 08:31:59 -070028 '../tests/PathOpsConicIntersectionTest.cpp',
29 '../tests/PathOpsConicLineIntersectionTest.cpp',
caryclark@google.com7abfa492013-04-12 11:59:41 +000030 '../tests/PathOpsCubicIntersectionTest.cpp',
31 '../tests/PathOpsCubicIntersectionTestData.cpp',
32 '../tests/PathOpsCubicLineIntersectionTest.cpp',
caryclark@google.coma5e55922013-05-07 18:51:31 +000033 '../tests/PathOpsCubicQuadIntersectionTest.cpp',
caryclark@google.com7abfa492013-04-12 11:59:41 +000034 '../tests/PathOpsCubicReduceOrderTest.cpp',
caryclark@google.com7abfa492013-04-12 11:59:41 +000035 '../tests/PathOpsDCubicTest.cpp',
36 '../tests/PathOpsDLineTest.cpp',
37 '../tests/PathOpsDPointTest.cpp',
caryclark@google.com7abfa492013-04-12 11:59:41 +000038 '../tests/PathOpsDRectTest.cpp',
caryclark@google.com7abfa492013-04-12 11:59:41 +000039 '../tests/PathOpsDVectorTest.cpp',
40 '../tests/PathOpsExtendedTest.cpp',
caryclark65f55312014-11-13 06:58:52 -080041 '../tests/PathOpsFuzz763Test.cpp',
caryclark@google.com7dfbb072013-04-22 14:37:05 +000042 '../tests/PathOpsInverseTest.cpp',
caryclark1049f122015-04-20 08:31:59 -070043 '../tests/PathOpsIssue3651.cpp',
caryclark@google.com7abfa492013-04-12 11:59:41 +000044 '../tests/PathOpsLineIntersectionTest.cpp',
45 '../tests/PathOpsLineParametetersTest.cpp',
caryclark1049f122015-04-20 08:31:59 -070046 '../tests/PathOpsOpCircleThreadedTest.cpp',
caryclark@google.com7abfa492013-04-12 11:59:41 +000047 '../tests/PathOpsOpCubicThreadedTest.cpp',
48 '../tests/PathOpsOpRectThreadedTest.cpp',
49 '../tests/PathOpsOpTest.cpp',
50 '../tests/PathOpsQuadIntersectionTest.cpp',
51 '../tests/PathOpsQuadIntersectionTestData.cpp',
52 '../tests/PathOpsQuadLineIntersectionTest.cpp',
53 '../tests/PathOpsQuadLineIntersectionThreadedTest.cpp',
caryclark@google.com7abfa492013-04-12 11:59:41 +000054 '../tests/PathOpsQuadReduceOrderTest.cpp',
55 '../tests/PathOpsSimplifyDegenerateThreadedTest.cpp',
caryclark@google.com66560ca2013-04-26 19:51:16 +000056 '../tests/PathOpsSimplifyFailTest.cpp',
caryclark@google.com7abfa492013-04-12 11:59:41 +000057 '../tests/PathOpsSimplifyQuadralateralsThreadedTest.cpp',
58 '../tests/PathOpsSimplifyQuadThreadedTest.cpp',
59 '../tests/PathOpsSimplifyRectThreadedTest.cpp',
60 '../tests/PathOpsSimplifyTest.cpp',
61 '../tests/PathOpsSimplifyTrianglesThreadedTest.cpp',
caryclark@google.com7eaa53d2013-10-02 14:49:34 +000062 '../tests/PathOpsSkpTest.cpp',
caryclark@google.com7abfa492013-04-12 11:59:41 +000063 '../tests/PathOpsTestCommon.cpp',
64 '../tests/PathOpsThreadedCommon.cpp',
caryclark54359292015-03-26 07:52:43 -070065 '../tests/PathOpsThreeWayTest.cpp',
66 '../tests/PathOpsTightBoundsTest.cpp',
67 '../tests/PathOpsTypesTest.cpp',
68
caryclark@google.com7abfa492013-04-12 11:59:41 +000069 '../tests/PathOpsCubicIntersectionTestData.h',
70 '../tests/PathOpsExtendedTest.h',
71 '../tests/PathOpsQuadIntersectionTestData.h',
72 '../tests/PathOpsTestCommon.h',
73 '../tests/PathOpsThreadedCommon.h',
caryclark54359292015-03-26 07:52:43 -070074 '../tests/PathOpsTSectDebug.h',
caryclark@google.com7abfa492013-04-12 11:59:41 +000075 ],
76}