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

Side by Side Diff: gyp/utils.gyp

Issue 179233005: DM: make GPU tasks multithreaded again. Big refactor. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: default 1 GPU thread Created 6 years, 9 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') | include/utils/SkRunnable.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 for utils. 1 # Gyp for utils.
2 { 2 {
3 'targets': [ 3 'targets': [
4 { 4 {
5 'target_name': 'utils', 5 'target_name': 'utils',
6 'product_name': 'skia_utils', 6 'product_name': 'skia_utils',
7 'type': 'static_library', 7 'type': 'static_library',
8 'standalone_static_library': 1, 8 'standalone_static_library': 1,
9 'dependencies': [ 9 'dependencies': [
10 'core.gyp:*', 10 'core.gyp:*',
(...skipping 12 matching lines...) Expand all
23 '../src/utils', 23 '../src/utils',
24 ], 24 ],
25 'sources': [ 25 'sources': [
26 # Classes for a threadpool. 26 # Classes for a threadpool.
27 '../include/utils/SkCondVar.h', 27 '../include/utils/SkCondVar.h',
28 '../include/utils/SkCountdown.h', 28 '../include/utils/SkCountdown.h',
29 '../include/utils/SkRunnable.h', 29 '../include/utils/SkRunnable.h',
30 '../include/utils/SkThreadPool.h', 30 '../include/utils/SkThreadPool.h',
31 '../src/utils/SkCondVar.cpp', 31 '../src/utils/SkCondVar.cpp',
32 '../src/utils/SkCountdown.cpp', 32 '../src/utils/SkCountdown.cpp',
33 '../src/utils/SkThreadPool.cpp',
34 33
35 '../include/utils/SkBoundaryPatch.h', 34 '../include/utils/SkBoundaryPatch.h',
36 '../include/utils/SkFrontBufferedStream.h', 35 '../include/utils/SkFrontBufferedStream.h',
37 '../include/utils/SkCamera.h', 36 '../include/utils/SkCamera.h',
38 '../include/utils/SkCanvasStateUtils.h', 37 '../include/utils/SkCanvasStateUtils.h',
39 '../include/utils/SkCubicInterval.h', 38 '../include/utils/SkCubicInterval.h',
40 '../include/utils/SkCullPoints.h', 39 '../include/utils/SkCullPoints.h',
41 '../include/utils/SkDebugUtils.h', 40 '../include/utils/SkDebugUtils.h',
42 '../include/utils/SkDeferredCanvas.h', 41 '../include/utils/SkDeferredCanvas.h',
43 '../include/utils/SkDumpCanvas.h', 42 '../include/utils/SkDumpCanvas.h',
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
220 }], 219 }],
221 ['skia_run_pdfviewer_in_gm', { 220 ['skia_run_pdfviewer_in_gm', {
222 'defines': [ 221 'defines': [
223 'SK_BUILD_NATIVE_PDF_RENDERER', 222 'SK_BUILD_NATIVE_PDF_RENDERER',
224 ], 223 ],
225 }], 224 }],
226 ], 225 ],
227 'direct_dependent_settings': { 226 'direct_dependent_settings': {
228 'include_dirs': [ 227 'include_dirs': [
229 '../include/utils', 228 '../include/utils',
229 '../src/utils',
230 ], 230 ],
231 }, 231 },
232 }, 232 },
233 ], 233 ],
234 } 234 }
OLDNEW
« no previous file with comments | « gyp/dm.gyp ('k') | include/utils/SkRunnable.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698