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

Side by Side Diff: gyp/pathops_unittest.gyp

Issue 371853005: Move threadpool code from include/utils to tools/threadpool. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: gyp Created 6 years, 5 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/dm.gyp ('k') | gyp/public_headers.gypi » ('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 pathops unit tests. 1 # GYP file to build pathops 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 'includes': [ 10 'includes': [
11 'pathops_unittest.gypi', 11 'pathops_unittest.gypi',
12 ], 12 ],
13 'dependencies': [ 'tools.gyp:crash_handler' ], 13 'dependencies': [
14 'tools.gyp:crash_handler',
15 'tools.gyp:threadpool',
16 ],
14 'sources': [ 17 'sources': [
15 '../tests/PathOpsAngleIdeas.cpp', 18 '../tests/PathOpsAngleIdeas.cpp',
16 '../tests/PathOpsCubicLineIntersectionIdeas.cpp', 19 '../tests/PathOpsCubicLineIntersectionIdeas.cpp',
17 '../tests/PathOpsDebug.cpp', 20 '../tests/PathOpsDebug.cpp',
18 '../tests/PathOpsOpLoopThreadedTest.cpp', 21 '../tests/PathOpsOpLoopThreadedTest.cpp',
19 '../tests/PathOpsSkpClipTest.cpp', 22 '../tests/PathOpsSkpClipTest.cpp',
20 '../tests/skia_test.cpp', 23 '../tests/skia_test.cpp',
21 ], 24 ],
22 'conditions': [ 25 'conditions': [
23 [ 'skia_android_framework == 1', { 26 [ 'skia_android_framework == 1', {
24 'libraries': [ 27 'libraries': [
25 '-lskia', 28 '-lskia',
26 ], 29 ],
27 'libraries!': [ 30 'libraries!': [
28 '-lz', 31 '-lz',
29 '-llog', 32 '-llog',
30 ], 33 ],
31 }], 34 }],
32 [ 'skia_gpu == 1', { 35 [ 'skia_gpu == 1', {
33 'include_dirs': [ 36 'include_dirs': [
34 '../src/gpu', 37 '../src/gpu',
35 ], 38 ],
36 }], 39 }],
37 ], 40 ],
38 }, 41 },
39 ], 42 ],
40 } 43 }
OLDNEW
« no previous file with comments | « gyp/dm.gyp ('k') | gyp/public_headers.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698