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

Side by Side Diff: gyp/skpskgr_test.gyp

Issue 52653002: pathops work in progress (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: add raster vs gpu test Created 7 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « gyp/most.gyp ('k') | src/pathops/SkAddIntersections.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # GYP file to build unit tests. 1 # GYP file to build unit tests.
2 { 2 {
3 'includes': [ 3 'includes': [
4 'apptype_console.gypi', 4 'apptype_console.gypi',
5 ], 5 ],
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'pathops_unittest', 8 'target_name': 'skpskgr_test',
9 'type': 'executable', 9 'type': 'executable',
10 'suppress_wildcard': '1', 10 'suppress_wildcard': '1',
11 'include_dirs' : [ 11 'include_dirs' : [
12 '../src/core', 12 '../src/core',
13 '../src/effects', 13 '../src/effects',
14 '../src/lazy', 14 '../src/lazy',
15 '../src/pathops', 15 '../src/pathops',
16 '../src/pdf', 16 '../src/pdf',
17 '../src/pipe/utils', 17 '../src/pipe/utils',
18 '../src/utils', 18 '../src/utils',
19 '../tools/', 19 '../tools/',
20 ], 20 ],
21 'includes': [
22 'pathops_unittest.gypi',
23 ],
24 'sources': [ 21 'sources': [
25 '../tests/PathOpsSkpClipTest.cpp', 22 '../tests/SkpSkGrTest.cpp',
26 '../tests/Test.cpp', 23 '../tests/Test.cpp',
27 '../tests/skia_test.cpp', 24 '../tests/skia_test.cpp',
28 '../tests/Test.h', 25 '../tests/Test.h',
29 ], 26 ],
30 'dependencies': [ 27 'dependencies': [
31 'skia_lib.gyp:skia_lib', 28 'skia_lib.gyp:skia_lib',
32 'flags.gyp:flags', 29 'flags.gyp:flags',
33 ], 30 ],
34 'conditions': [ 31 'conditions': [
35 [ 'skia_gpu == 1', { 32 [ 'skia_gpu == 1', {
36 'include_dirs': [ 33 'include_dirs': [
37 '../src/gpu', 34 '../src/gpu',
38 ], 35 ],
39 }], 36 }],
40 ], 37 ],
41 }, 38 },
42 ], 39 ],
43 } 40 }
44 41
45 # Local Variables: 42 # Local Variables:
46 # tab-width:2 43 # tab-width:2
47 # indent-tabs-mode:nil 44 # indent-tabs-mode:nil
48 # End: 45 # End:
49 # vim: set expandtab tabstop=2 shiftwidth=2: 46 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « gyp/most.gyp ('k') | src/pathops/SkAddIntersections.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698