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

Side by Side Diff: gyp/skiaserve.gyp

Issue 1651403003: Modify skiaserve to support drawTo and /cmd/N (Closed) Base URL: https://skia.googlesource.com/skia.git@skiaserve-9-fixcrash
Patch Set: handle /cmd Created 4 years, 10 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 | tools/skiaserve/skiaserve.cpp » ('j') | tools/skiaserve/skiaserve.cpp » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2016 Google Inc. 1 # Copyright 2016 Google Inc.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 # GYP file to build performance testbench. 5 # GYP file to build performance testbench.
6 # 6 #
7 { 7 {
8 'includes': [ 8 'includes': [
9 'apptype_console.gypi', 9 'apptype_console.gypi',
10 ], 10 ],
11 'targets': [ 11 'targets': [
12 { 12 {
13 'target_name': 'skiaserve', 13 'target_name': 'skiaserve',
14 'type': 'executable', 14 'type': 'executable',
15 'include_dirs': [
16 '../src/core',
17 '../src/ports',
18 '../src/utils/debugger',
19 '../tools/json',
20 ],
15 'sources': [ 21 'sources': [
22 # Stuff for the debug canvas
23 '../src/utils/debugger/SkDrawCommand.h',
24 '../src/utils/debugger/SkDrawCommand.cpp',
25 '../src/utils/debugger/SkDebugCanvas.h',
26 '../src/utils/debugger/SkDebugCanvas.cpp',
27 '../src/utils/debugger/SkObjectParser.h',
28 '../src/utils/debugger/SkObjectParser.cpp',
29 '../src/utils/debugger/SkOverdrawMode.h',
30 '../src/utils/debugger/SkOverdrawMode.cpp',
16 '<!@(python find.py ../tools/skiaserve "*.cpp")', 31 '<!@(python find.py ../tools/skiaserve "*.cpp")',
17 ], 32 ],
18 'include_dirs': [
19 '../tools/json',
20 ],
21 'dependencies': [ 33 'dependencies': [
22 'flags.gyp:flags', 34 'flags.gyp:flags',
23 'gputest.gyp:skgputest', 35 'gputest.gyp:skgputest',
24 'json.gyp:json', 36 'json.gyp:json',
25 'jsoncpp.gyp:jsoncpp', 37 'jsoncpp.gyp:jsoncpp',
26 'microhttpd.gyp:microhttpd', 38 'microhttpd.gyp:microhttpd',
27 'skia_lib.gyp:skia_lib', 39 'skia_lib.gyp:skia_lib',
28 'tools.gyp:crash_handler', 40 'tools.gyp:crash_handler',
29 'tools.gyp:proc_stats', 41 'tools.gyp:proc_stats',
30 'tools.gyp:resources', 42 'tools.gyp:resources',
31 ], 43 ],
32 }, 44 },
33 ], 45 ],
34 } 46 }
OLDNEW
« no previous file with comments | « no previous file | tools/skiaserve/skiaserve.cpp » ('j') | tools/skiaserve/skiaserve.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698