Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(395)

Side by Side Diff: gyp/tests.gypi

Issue 1280133004: Add ability to pass in an optional path to additional unit tests to run. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « gyp/common_variables.gypi ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 23 matching lines...) Expand all
34 }], 34 }],
35 [ 'skia_android_framework == 1', { 35 [ 'skia_android_framework == 1', {
36 'libraries': [ 36 'libraries': [
37 '-ldl', 37 '-ldl',
38 ], 38 ],
39 }], 39 }],
40 [ 'not skia_pdf', { 40 [ 'not skia_pdf', {
41 'dependencies!': [ 'pdf.gyp:pdf' ], 41 'dependencies!': [ 'pdf.gyp:pdf' ],
42 'dependencies': [ 'pdf.gyp:nopdf' ], 42 'dependencies': [ 'pdf.gyp:nopdf' ],
43 }], 43 }],
44 [ 'skia_gpu_extra_tests_path', {
45 'sources': [
46 '<!@(python find.py <(skia_gpu_extra_tests_path) "*.c*")',
47 ],
48 }],
44 ], 49 ],
45 'sources': [ 50 'sources': [
46 '../tests/Test.h', 51 '../tests/Test.h',
47 '<!@(python find.py ../tests "*.c*")', 52 '<!@(python find.py ../tests "*.c*")',
48 '../src/utils/debugger/SkDrawCommand.h', 53 '../src/utils/debugger/SkDrawCommand.h',
49 '../src/utils/debugger/SkDrawCommand.cpp', 54 '../src/utils/debugger/SkDrawCommand.cpp',
50 '../src/utils/debugger/SkDebugCanvas.h', 55 '../src/utils/debugger/SkDebugCanvas.h',
51 '../src/utils/debugger/SkDebugCanvas.cpp', 56 '../src/utils/debugger/SkDebugCanvas.cpp',
52 '../src/utils/debugger/SkObjectParser.h', 57 '../src/utils/debugger/SkObjectParser.h',
53 '../src/utils/debugger/SkObjectParser.cpp', 58 '../src/utils/debugger/SkObjectParser.cpp',
54 '../src/pipe/utils/SamplePipeControllers.cpp', 59 '../src/pipe/utils/SamplePipeControllers.cpp',
55 ], 60 ],
56 'sources!': [ 61 'sources!': [
57 '../tests/SkpSkGrTest.cpp', 62 '../tests/SkpSkGrTest.cpp',
58 '../tests/skia_test.cpp', 63 '../tests/skia_test.cpp',
59 '../tests/PathOpsAngleIdeas.cpp', 64 '../tests/PathOpsAngleIdeas.cpp',
60 '../tests/PathOpsBattles.cpp', 65 '../tests/PathOpsBattles.cpp',
61 '../tests/PathOpsCubicLineIntersectionIdeas.cpp', 66 '../tests/PathOpsCubicLineIntersectionIdeas.cpp',
62 '../tests/PathOpsDebug.cpp', 67 '../tests/PathOpsDebug.cpp',
63 '../tests/PathOpsOpLoopThreadedTest.cpp', 68 '../tests/PathOpsOpLoopThreadedTest.cpp',
64 '../tests/PathOpsSkpClipTest.cpp', 69 '../tests/PathOpsSkpClipTest.cpp',
65 ], 70 ],
66 } 71 }
OLDNEW
« no previous file with comments | « gyp/common_variables.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698