| OLD | NEW |
| 1 # Common gypi for unit tests. | 1 # Common gypi for unit tests. |
| 2 { | 2 { |
| 3 'include_dirs': [ | 3 'include_dirs': [ |
| 4 '../src/core', | 4 '../src/core', |
| 5 '../src/effects', | 5 '../src/effects', |
| 6 '../src/image', | 6 '../src/image', |
| 7 '../src/lazy', | 7 '../src/lazy', |
| 8 '../src/images', | 8 '../src/images', |
| 9 '../src/pathops', | 9 '../src/pathops', |
| 10 '../src/pdf', | 10 '../src/pdf', |
| 11 '../src/pipe/utils', | 11 '../src/pipe/utils', |
| 12 '../src/utils', | 12 '../src/utils', |
| 13 '../src/utils/debugger', | 13 '../src/utils/debugger', |
| 14 | 14 |
| 15 # Needed for TDStackNesterTest. | 15 # Needed for TDStackNesterTest. |
| 16 '../experimental/PdfViewer', | 16 '../experimental/PdfViewer', |
| 17 '../experimental/PdfViewer/src', | 17 '../experimental/PdfViewer/src', |
| 18 ], | 18 ], |
| 19 'dependencies': [ | 19 'dependencies': [ |
| 20 'experimental.gyp:experimental', | 20 'experimental.gyp:experimental', |
| 21 'flags.gyp:flags_common', | 21 'flags.gyp:flags_common', |
| 22 'pdf.gyp:pdf', | 22 'pdf.gyp:pdf', |
| 23 'skia_lib.gyp:skia_lib', | 23 'skia_lib.gyp:skia_lib', |
| 24 'tools.gyp:picture_utils', | 24 'tools.gyp:picture_utils', |
| 25 'tools.gyp:resources', | 25 'tools.gyp:resources', |
| 26 'tools.gyp:sk_tool_utils', | 26 'tools.gyp:sk_tool_utils', |
| 27 ], | 27 ], |
| 28 'conditions': [ |
| 29 [ 'skia_android_framework == 1', { |
| 30 'libraries': [ |
| 31 '-ldl', |
| 32 ], |
| 33 }], |
| 34 ], |
| 28 'sources': [ | 35 'sources': [ |
| 29 '../tests/Test.cpp', | 36 '../tests/Test.cpp', |
| 30 '../tests/Test.h', | 37 '../tests/Test.h', |
| 31 | 38 |
| 32 '../tests/AAClipTest.cpp', | 39 '../tests/AAClipTest.cpp', |
| 33 '../tests/ARGBImageEncoderTest.cpp', | 40 '../tests/ARGBImageEncoderTest.cpp', |
| 34 '../tests/AndroidPaintTest.cpp', | 41 '../tests/AndroidPaintTest.cpp', |
| 35 '../tests/AnnotationTest.cpp', | 42 '../tests/AnnotationTest.cpp', |
| 36 '../tests/AsADashTest.cpp', | 43 '../tests/AsADashTest.cpp', |
| 37 '../tests/AtomicTest.cpp', | 44 '../tests/AtomicTest.cpp', |
| (...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 200 '../src/utils/debugger/SkObjectParser.h', | 207 '../src/utils/debugger/SkObjectParser.h', |
| 201 '../src/utils/debugger/SkObjectParser.cpp', | 208 '../src/utils/debugger/SkObjectParser.cpp', |
| 202 | 209 |
| 203 '../tests/PipeTest.cpp', | 210 '../tests/PipeTest.cpp', |
| 204 '../src/pipe/utils/SamplePipeControllers.cpp', | 211 '../src/pipe/utils/SamplePipeControllers.cpp', |
| 205 | 212 |
| 206 '../tests/TDStackNesterTest.cpp', | 213 '../tests/TDStackNesterTest.cpp', |
| 207 '../experimental/PdfViewer/src/SkTDStackNester.h', | 214 '../experimental/PdfViewer/src/SkTDStackNester.h', |
| 208 ], | 215 ], |
| 209 } | 216 } |
| OLD | NEW |