| 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', |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 'skia_lib.gyp:skia_lib', | 25 'skia_lib.gyp:skia_lib', |
| 26 'tools.gyp:picture_utils', | 26 'tools.gyp:picture_utils', |
| 27 'tools.gyp:resources', | 27 'tools.gyp:resources', |
| 28 'tools.gyp:sk_tool_utils', | 28 'tools.gyp:sk_tool_utils', |
| 29 'zlib.gyp:zlib', | 29 'zlib.gyp:zlib', |
| 30 ], | 30 ], |
| 31 'conditions': [ | 31 'conditions': [ |
| 32 [ 'skia_os not in ["linux", "freebsd", "openbsd", "solaris", "chromeos", "an
droid"]', { | 32 [ 'skia_os not in ["linux", "freebsd", "openbsd", "solaris", "chromeos", "an
droid"]', { |
| 33 'sources!': [ '../tests/FontMgrAndroidParserTest.cpp', ], | 33 'sources!': [ '../tests/FontMgrAndroidParserTest.cpp', ], |
| 34 }], | 34 }], |
| 35 [ 'skia_android_framework == 1', { | |
| 36 'libraries': [ | |
| 37 '-ldl', | |
| 38 ], | |
| 39 }], | |
| 40 [ 'not skia_pdf', { | 35 [ 'not skia_pdf', { |
| 41 'dependencies!': [ 'pdf.gyp:pdf', 'zlib.gyp:zlib' ], | 36 'dependencies!': [ 'pdf.gyp:pdf', 'zlib.gyp:zlib' ], |
| 42 'dependencies': [ 'pdf.gyp:nopdf' ], | 37 'dependencies': [ 'pdf.gyp:nopdf' ], |
| 43 'sources!': [ '<!@(python find.py ../tests "PDF*.c*")', ], | 38 'sources!': [ '<!@(python find.py ../tests "PDF*.c*")', ], |
| 44 }], | 39 }], |
| 45 [ 'skia_gpu_extra_tests_path', { | 40 [ 'skia_gpu_extra_tests_path', { |
| 46 'sources': [ | 41 'sources': [ |
| 47 '<!@(python find.py <(skia_gpu_extra_tests_path) "*.c*")', | 42 '<!@(python find.py <(skia_gpu_extra_tests_path) "*.c*")', |
| 48 ], | 43 ], |
| 49 }], | 44 }], |
| (...skipping 14 matching lines...) Expand all Loading... |
| 64 '../tests/SkpSkGrTest.cpp', | 59 '../tests/SkpSkGrTest.cpp', |
| 65 '../tests/skia_test.cpp', | 60 '../tests/skia_test.cpp', |
| 66 '../tests/PathOpsAngleIdeas.cpp', | 61 '../tests/PathOpsAngleIdeas.cpp', |
| 67 '../tests/PathOpsBattles.cpp', | 62 '../tests/PathOpsBattles.cpp', |
| 68 '../tests/PathOpsCubicLineIntersectionIdeas.cpp', | 63 '../tests/PathOpsCubicLineIntersectionIdeas.cpp', |
| 69 '../tests/PathOpsDebug.cpp', | 64 '../tests/PathOpsDebug.cpp', |
| 70 '../tests/PathOpsOpLoopThreadedTest.cpp', | 65 '../tests/PathOpsOpLoopThreadedTest.cpp', |
| 71 '../tests/PathOpsSkpClipTest.cpp', | 66 '../tests/PathOpsSkpClipTest.cpp', |
| 72 ], | 67 ], |
| 73 } | 68 } |
| OLD | NEW |