blob: ace789fa5db76bd7dcca8845f6a8dfcce1b70c58 [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',
caryclark@google.com7abfa492013-04-12 11:59:41 +000028 '../tests/PathOpsCubicIntersectionTest.cpp',
29 '../tests/PathOpsCubicIntersectionTestData.cpp',
30 '../tests/PathOpsCubicLineIntersectionTest.cpp',
caryclark@google.coma5e55922013-05-07 18:51:31 +000031 '../tests/PathOpsCubicQuadIntersectionTest.cpp',
caryclark@google.com7abfa492013-04-12 11:59:41 +000032 '../tests/PathOpsCubicReduceOrderTest.cpp',
caryclark@google.com7abfa492013-04-12 11:59:41 +000033 '../tests/PathOpsDCubicTest.cpp',
34 '../tests/PathOpsDLineTest.cpp',
35 '../tests/PathOpsDPointTest.cpp',
caryclark@google.com7abfa492013-04-12 11:59:41 +000036 '../tests/PathOpsDRectTest.cpp',
caryclark@google.com7abfa492013-04-12 11:59:41 +000037 '../tests/PathOpsDVectorTest.cpp',
38 '../tests/PathOpsExtendedTest.cpp',
caryclark65f55312014-11-13 06:58:52 -080039 '../tests/PathOpsFuzz763Test.cpp',
caryclark@google.com7dfbb072013-04-22 14:37:05 +000040 '../tests/PathOpsInverseTest.cpp',
caryclark@google.com7abfa492013-04-12 11:59:41 +000041 '../tests/PathOpsLineIntersectionTest.cpp',
42 '../tests/PathOpsLineParametetersTest.cpp',
43 '../tests/PathOpsOpCubicThreadedTest.cpp',
44 '../tests/PathOpsOpRectThreadedTest.cpp',
45 '../tests/PathOpsOpTest.cpp',
46 '../tests/PathOpsQuadIntersectionTest.cpp',
47 '../tests/PathOpsQuadIntersectionTestData.cpp',
48 '../tests/PathOpsQuadLineIntersectionTest.cpp',
49 '../tests/PathOpsQuadLineIntersectionThreadedTest.cpp',
caryclark@google.com7abfa492013-04-12 11:59:41 +000050 '../tests/PathOpsQuadReduceOrderTest.cpp',
51 '../tests/PathOpsSimplifyDegenerateThreadedTest.cpp',
caryclark@google.com66560ca2013-04-26 19:51:16 +000052 '../tests/PathOpsSimplifyFailTest.cpp',
caryclark@google.com7abfa492013-04-12 11:59:41 +000053 '../tests/PathOpsSimplifyQuadralateralsThreadedTest.cpp',
54 '../tests/PathOpsSimplifyQuadThreadedTest.cpp',
55 '../tests/PathOpsSimplifyRectThreadedTest.cpp',
56 '../tests/PathOpsSimplifyTest.cpp',
57 '../tests/PathOpsSimplifyTrianglesThreadedTest.cpp',
caryclark@google.com7eaa53d2013-10-02 14:49:34 +000058 '../tests/PathOpsSkpTest.cpp',
caryclark@google.com7abfa492013-04-12 11:59:41 +000059 '../tests/PathOpsTestCommon.cpp',
60 '../tests/PathOpsThreadedCommon.cpp',
caryclark54359292015-03-26 07:52:43 -070061 '../tests/PathOpsThreeWayTest.cpp',
62 '../tests/PathOpsTightBoundsTest.cpp',
63 '../tests/PathOpsTypesTest.cpp',
64
caryclark@google.com7abfa492013-04-12 11:59:41 +000065 '../tests/PathOpsCubicIntersectionTestData.h',
66 '../tests/PathOpsExtendedTest.h',
67 '../tests/PathOpsQuadIntersectionTestData.h',
68 '../tests/PathOpsTestCommon.h',
69 '../tests/PathOpsThreadedCommon.h',
caryclark54359292015-03-26 07:52:43 -070070 '../tests/PathOpsTSectDebug.h',
caryclark@google.com7abfa492013-04-12 11:59:41 +000071 ],
72}