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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
42 'dependencies!': [ 'pdf.gyp:pdf', 'zlib.gyp:zlib' ], | 42 'dependencies!': [ 'pdf.gyp:pdf', 'zlib.gyp:zlib' ], |
43 'dependencies': [ 'pdf.gyp:nopdf' ], | 43 'dependencies': [ 'pdf.gyp:nopdf' ], |
44 'sources!': [ '<!@(python find.py ../tests "PDF*.c*")', ], | 44 'sources!': [ '<!@(python find.py ../tests "PDF*.c*")', ], |
45 }], | 45 }], |
46 [ 'skia_gpu_extra_tests_path', { | 46 [ 'skia_gpu_extra_tests_path', { |
47 'sources': [ | 47 'sources': [ |
48 '<!@(python find.py <(skia_gpu_extra_tests_path) "*.c*")', | 48 '<!@(python find.py <(skia_gpu_extra_tests_path) "*.c*")', |
49 ], | 49 ], |
50 }], | 50 }], |
51 ], | 51 ], |
52 'xcode_settings': { | |
mtklein
2015/11/12 15:27:29
Let's do this globally?
mtklein
2015/11/12 15:28:45
(I think that'll fix your 10.8 bot.)
| |
53 'conditions': [ | |
54 [ 'skia_osx_deployment_target==""', { | |
55 'MACOSX_DEPLOYMENT_TARGET': '10.7', # -mmacos-version-min, passed in env to ld. | |
56 }, { | |
57 'MACOSX_DEPLOYMENT_TARGET': '<(skia_osx_deployment_target)', | |
58 }], | |
59 ], | |
60 'CLANG_CXX_LIBRARY': 'libc++', | |
61 }, | |
52 'sources': [ | 62 'sources': [ |
53 '../tests/Test.h', | 63 '../tests/Test.h', |
54 '<!@(python find.py ../tests "*.c*")', | 64 '<!@(python find.py ../tests "*.c*")', |
55 '../src/utils/debugger/SkDrawCommand.h', | 65 '../src/utils/debugger/SkDrawCommand.h', |
56 '../src/utils/debugger/SkDrawCommand.cpp', | 66 '../src/utils/debugger/SkDrawCommand.cpp', |
57 '../src/utils/debugger/SkDebugCanvas.h', | 67 '../src/utils/debugger/SkDebugCanvas.h', |
58 '../src/utils/debugger/SkDebugCanvas.cpp', | 68 '../src/utils/debugger/SkDebugCanvas.cpp', |
59 '../src/utils/debugger/SkObjectParser.h', | 69 '../src/utils/debugger/SkObjectParser.h', |
60 '../src/utils/debugger/SkObjectParser.cpp', | 70 '../src/utils/debugger/SkObjectParser.cpp', |
61 '../src/pipe/utils/SamplePipeControllers.cpp', | 71 '../src/pipe/utils/SamplePipeControllers.cpp', |
62 ], | 72 ], |
63 'sources!': [ | 73 'sources!': [ |
64 '../tests/SkpSkGrTest.cpp', | 74 '../tests/SkpSkGrTest.cpp', |
65 '../tests/skia_test.cpp', | 75 '../tests/skia_test.cpp', |
66 '../tests/PathOpsAngleIdeas.cpp', | 76 '../tests/PathOpsAngleIdeas.cpp', |
67 '../tests/PathOpsBattles.cpp', | 77 '../tests/PathOpsBattles.cpp', |
68 '../tests/PathOpsCubicLineIntersectionIdeas.cpp', | 78 '../tests/PathOpsCubicLineIntersectionIdeas.cpp', |
69 '../tests/PathOpsDebug.cpp', | 79 '../tests/PathOpsDebug.cpp', |
70 '../tests/PathOpsOpLoopThreadedTest.cpp', | 80 '../tests/PathOpsOpLoopThreadedTest.cpp', |
71 '../tests/PathOpsSkpClipTest.cpp', | 81 '../tests/PathOpsSkpClipTest.cpp', |
72 ], | 82 ], |
73 } | 83 } |
OLD | NEW |