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

Side by Side Diff: gyp/pathops_unittest.gyp

Issue 131103009: update pathops to circle sort (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: disable old test that still fails on linux 32 release Created 6 years, 8 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 | « no previous file | include/core/SkPostConfig.h » ('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': 'pathops_unittest',
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': [ 21 'includes': [
22 'pathops_unittest.gypi', 22 'pathops_unittest.gypi',
23 ], 23 ],
24 'sources': [ 24 'sources': [
25 '../tests/PathOpsAngleIdeas.cpp',
26 '../tests/PathOpsDebug.cpp',
25 '../tests/PathOpsSkpClipTest.cpp', 27 '../tests/PathOpsSkpClipTest.cpp',
26 '../tests/Test.cpp', 28 '../tests/Test.cpp',
27 '../tests/skia_test.cpp', 29 '../tests/skia_test.cpp',
28 '../tests/Test.h', 30 '../tests/Test.h',
29 ], 31 ],
30 'dependencies': [ 32 'dependencies': [
31 'skia_lib.gyp:skia_lib', 33 'skia_lib.gyp:skia_lib',
32 'flags.gyp:flags', 34 'flags.gyp:flags',
33 ], 35 ],
34 'conditions': [ 36 'conditions': [
35 [ 'skia_gpu == 1', { 37 [ 'skia_gpu == 1', {
36 'include_dirs': [ 38 'include_dirs': [
37 '../src/gpu', 39 '../src/gpu',
38 ], 40 ],
39 }], 41 }],
40 ], 42 ],
41 }, 43 },
42 ], 44 ],
43 } 45 }
OLDNEW
« no previous file with comments | « no previous file | include/core/SkPostConfig.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698