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

Side by Side Diff: gyp/pathops_unittest.gyp

Issue 343283002: No need to include ../tools/flags in include_dirs when depending on flags target. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: rebase Created 6 years, 6 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/flags.gyp ('k') | gyp/tools.gyp » ('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/',
20 ], 19 ],
21 'includes': [ 20 'includes': [
22 'pathops_unittest.gypi', 21 'pathops_unittest.gypi',
23 ], 22 ],
24 'sources': [ 23 'sources': [
25 '../tests/PathOpsAngleIdeas.cpp', 24 '../tests/PathOpsAngleIdeas.cpp',
26 '../tests/PathOpsCubicLineIntersectionIdeas.cpp', 25 '../tests/PathOpsCubicLineIntersectionIdeas.cpp',
27 '../tests/PathOpsDebug.cpp', 26 '../tests/PathOpsDebug.cpp',
28 '../tests/PathOpsOpLoopThreadedTest.cpp', 27 '../tests/PathOpsOpLoopThreadedTest.cpp',
29 '../tests/PathOpsSkpClipTest.cpp', 28 '../tests/PathOpsSkpClipTest.cpp',
30 '../tests/Test.cpp', 29 '../tests/Test.cpp',
30 '../tests/Test.h',
31 '../tests/skia_test.cpp', 31 '../tests/skia_test.cpp',
32 '../tests/Test.h',
33 ], 32 ],
34 'dependencies': [ 33 'dependencies': [
34 'flags.gyp:flags',
35 'skia_lib.gyp:skia_lib', 35 'skia_lib.gyp:skia_lib',
36 'flags.gyp:flags',
37 ], 36 ],
38 'conditions': [ 37 'conditions': [
39 [ 'skia_gpu == 1', { 38 [ 'skia_gpu == 1', {
40 'include_dirs': [ 39 'include_dirs': [
41 '../src/gpu', 40 '../src/gpu',
42 ], 41 ],
43 }], 42 }],
44 ], 43 ],
45 }, 44 },
46 ], 45 ],
47 } 46 }
OLDNEW
« no previous file with comments | « gyp/flags.gyp ('k') | gyp/tools.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698