| OLD | NEW |
| 1 # Copyright 2015 Google Inc. | 1 # Copyright 2015 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 # Common gypi for pathops unit tests. | 5 # Common gypi for pathops unit tests. |
| 6 { | 6 { |
| 7 'include_dirs': [ | 7 'include_dirs': [ |
| 8 '../include/private', | 8 '../include/private', |
| 9 '../src/core', | 9 '../src/core', |
| 10 '../src/effects', | 10 '../src/effects', |
| 11 '../src/lazy', | 11 '../src/lazy', |
| 12 '../src/pathops', | 12 '../src/pathops', |
| 13 '../src/pipe/utils', | 13 '../src/pipe/utils', |
| 14 '../src/utils', | 14 '../src/utils', |
| 15 ], | 15 ], |
| 16 'dependencies': [ | 16 'dependencies': [ |
| 17 'flags.gyp:flags', | 17 'flags.gyp:flags', |
| 18 'skia_lib.gyp:skia_lib', | 18 'skia_lib.gyp:skia_lib', |
| 19 'tools.gyp:resources', | 19 'tools.gyp:resources', |
| 20 ], | 20 ], |
| 21 'sources': [ | 21 'sources': [ |
| 22 '../tests/Test.cpp', | 22 '../tests/Test.cpp', |
| 23 '../tests/Test.h', | 23 '../tests/Test.h', |
| 24 | 24 |
| 25 '../tests/PathOpsAngleTest.cpp', | 25 '../tests/PathOpsAngleTest.cpp', |
| 26 '../tests/PathOpsBoundsTest.cpp', | 26 '../tests/PathOpsBoundsTest.cpp', |
| 27 '../tests/PathOpsBuilderConicTest.cpp', | 27 '../tests/PathOpsBuilderConicTest.cpp', |
| 28 '../tests/PathOpsBuilderTest.cpp', | 28 '../tests/PathOpsBuilderTest.cpp', |
| 29 '../tests/PathOpsBuildUseTest.cpp', | 29 '../tests/PathOpsBuildUseTest.cpp', |
| 30 '../tests/PathOpsChalkboardTest.cpp', |
| 30 '../tests/PathOpsConicIntersectionTest.cpp', | 31 '../tests/PathOpsConicIntersectionTest.cpp', |
| 31 '../tests/PathOpsConicLineIntersectionTest.cpp', | 32 '../tests/PathOpsConicLineIntersectionTest.cpp', |
| 32 '../tests/PathOpsConicQuadIntersectionTest.cpp', | 33 '../tests/PathOpsConicQuadIntersectionTest.cpp', |
| 33 '../tests/PathOpsCubicConicIntersectionTest.cpp', | 34 '../tests/PathOpsCubicConicIntersectionTest.cpp', |
| 34 '../tests/PathOpsCubicIntersectionTest.cpp', | 35 '../tests/PathOpsCubicIntersectionTest.cpp', |
| 35 '../tests/PathOpsCubicIntersectionTestData.cpp', | 36 '../tests/PathOpsCubicIntersectionTestData.cpp', |
| 36 '../tests/PathOpsCubicLineIntersectionTest.cpp', | 37 '../tests/PathOpsCubicLineIntersectionTest.cpp', |
| 37 '../tests/PathOpsCubicQuadIntersectionTest.cpp', | 38 '../tests/PathOpsCubicQuadIntersectionTest.cpp', |
| 38 '../tests/PathOpsCubicReduceOrderTest.cpp', | 39 '../tests/PathOpsCubicReduceOrderTest.cpp', |
| 39 '../tests/PathOpsDCubicTest.cpp', | 40 '../tests/PathOpsDCubicTest.cpp', |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 | 75 |
| 75 '../tests/PathOpsCubicIntersectionTestData.h', | 76 '../tests/PathOpsCubicIntersectionTestData.h', |
| 76 '../tests/PathOpsExtendedTest.h', | 77 '../tests/PathOpsExtendedTest.h', |
| 77 '../tests/PathOpsQuadIntersectionTestData.h', | 78 '../tests/PathOpsQuadIntersectionTestData.h', |
| 78 '../tests/PathOpsTestCommon.h', | 79 '../tests/PathOpsTestCommon.h', |
| 79 '../tests/PathOpsThreadedCommon.h', | 80 '../tests/PathOpsThreadedCommon.h', |
| 80 '../tests/PathOpsTSectDebug.h', | 81 '../tests/PathOpsTSectDebug.h', |
| 81 '../tests/SubsetPath.h', | 82 '../tests/SubsetPath.h', |
| 82 ], | 83 ], |
| 83 } | 84 } |
| OLD | NEW |