| 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 unit tests. | 5 # Common gypi for unit tests. |
| 6 { | 6 { |
| 7 'include_dirs': [ | 7 'include_dirs': [ |
| 8 '../include/private', | 8 '../include/private', |
| 9 '../src/codec', | 9 '../src/codec', |
| 10 '../src/core', | 10 '../src/core', |
| 11 '../src/effects', | 11 '../src/effects', |
| 12 '../src/image', | 12 '../src/image', |
| 13 '../src/lazy', | 13 '../src/lazy', |
| 14 '../src/images', | 14 '../src/images', |
| 15 '../src/pathops', | 15 '../src/pathops', |
| 16 '../src/pdf', | 16 '../src/pdf', |
| 17 '../src/ports', | 17 '../src/ports', |
| 18 '../src/pipe/utils', | 18 '../src/pipe/utils', |
| 19 '../src/utils', | 19 '../src/utils', |
| 20 '../src/utils/debugger', | 20 '../src/utils/debugger', |
| 21 | |
| 22 # Needed for TDStackNesterTest. | |
| 23 '../experimental/PdfViewer', | |
| 24 '../experimental/PdfViewer/src', | |
| 25 ], | 21 ], |
| 26 'dependencies': [ | 22 'dependencies': [ |
| 27 'experimental.gyp:experimental', | 23 'experimental.gyp:experimental', |
| 28 'flags.gyp:flags_common', | 24 'flags.gyp:flags_common', |
| 29 'pdf.gyp:pdf', | 25 'pdf.gyp:pdf', |
| 30 'skia_lib.gyp:skia_lib', | 26 'skia_lib.gyp:skia_lib', |
| 31 'tools.gyp:picture_utils', | 27 'tools.gyp:picture_utils', |
| 32 'tools.gyp:resources', | 28 'tools.gyp:resources', |
| 33 'tools.gyp:sk_tool_utils', | 29 'tools.gyp:sk_tool_utils', |
| 34 ], | 30 ], |
| (...skipping 10 matching lines...) Expand all Loading... |
| 45 'sources': [ | 41 'sources': [ |
| 46 '../tests/Test.h', | 42 '../tests/Test.h', |
| 47 '<!@(python find.py ../tests "*.c*")', | 43 '<!@(python find.py ../tests "*.c*")', |
| 48 '../src/utils/debugger/SkDrawCommand.h', | 44 '../src/utils/debugger/SkDrawCommand.h', |
| 49 '../src/utils/debugger/SkDrawCommand.cpp', | 45 '../src/utils/debugger/SkDrawCommand.cpp', |
| 50 '../src/utils/debugger/SkDebugCanvas.h', | 46 '../src/utils/debugger/SkDebugCanvas.h', |
| 51 '../src/utils/debugger/SkDebugCanvas.cpp', | 47 '../src/utils/debugger/SkDebugCanvas.cpp', |
| 52 '../src/utils/debugger/SkObjectParser.h', | 48 '../src/utils/debugger/SkObjectParser.h', |
| 53 '../src/utils/debugger/SkObjectParser.cpp', | 49 '../src/utils/debugger/SkObjectParser.cpp', |
| 54 '../src/pipe/utils/SamplePipeControllers.cpp', | 50 '../src/pipe/utils/SamplePipeControllers.cpp', |
| 55 '../experimental/PdfViewer/src/SkTDStackNester.h', | |
| 56 ], | 51 ], |
| 57 'sources!': [ | 52 'sources!': [ |
| 58 '../tests/SkpSkGrTest.cpp', | 53 '../tests/SkpSkGrTest.cpp', |
| 59 '../tests/skia_test.cpp', | 54 '../tests/skia_test.cpp', |
| 60 '../tests/PathOpsAngleIdeas.cpp', | 55 '../tests/PathOpsAngleIdeas.cpp', |
| 61 '../tests/PathOpsBattles.cpp', | 56 '../tests/PathOpsBattles.cpp', |
| 62 '../tests/PathOpsCubicLineIntersectionIdeas.cpp', | 57 '../tests/PathOpsCubicLineIntersectionIdeas.cpp', |
| 63 '../tests/PathOpsDebug.cpp', | 58 '../tests/PathOpsDebug.cpp', |
| 64 '../tests/PathOpsOpLoopThreadedTest.cpp', | 59 '../tests/PathOpsOpLoopThreadedTest.cpp', |
| 65 '../tests/PathOpsSkpClipTest.cpp', | 60 '../tests/PathOpsSkpClipTest.cpp', |
| 66 ], | 61 ], |
| 67 } | 62 } |
| OLD | NEW |