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

Side by Side Diff: gyp/debugger.gyp

Issue 16638014: Expose debugger backend classes externally. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Relocated to src/utils/debugger/ Created 7 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 | Annotate | Revision Log
« no previous file with comments | « gyp/SampleApp.gyp ('k') | gyp/gm.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 { 1 {
2 'variables': { 2 'variables': {
3 'conditions': [ 3 'conditions': [
4 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "chromeos"]', { 4 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "chromeos"]', {
5 # Use the systemwide Qt libs by default 5 # Use the systemwide Qt libs by default
6 'variables': { 6 'variables': {
7 'qt_sdk%': '/usr', 7 'qt_sdk%': '/usr',
8 }, 8 },
9 'qt_sdk': '<(qt_sdk)', 9 'qt_sdk': '<(qt_sdk)',
10 'qt_moc%': 'moc', 10 'qt_moc%': 'moc',
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 ], 78 ],
79 'include_dirs' : [ 79 'include_dirs' : [
80 '../src/core', 80 '../src/core',
81 '../debugger', # To pull SkDebugger.h 81 '../debugger', # To pull SkDebugger.h
82 '../src/gpu', # To pull gl/GrGLUtil.h 82 '../src/gpu', # To pull gl/GrGLUtil.h
83 '../src/ports', # To pull SkFontDescriptor.h 83 '../src/ports', # To pull SkFontDescriptor.h
84 '../bench', 84 '../bench',
85 '../tools', 85 '../tools',
86 ], 86 ],
87 'sources': [ 87 'sources': [
88 '../debugger/SkDebugCanvas.h',
89 '../debugger/SkDebugCanvas.cpp',
90 '../debugger/SkDebugger.cpp', 88 '../debugger/SkDebugger.cpp',
91 '../debugger/SkDrawCommand.h', 89 '../src/utils/debugger/SkDebugCanvas.h',
92 '../debugger/SkDrawCommand.cpp', 90 '../src/utils/debugger/SkDebugCanvas.cpp',
93 '../debugger/SkObjectParser.h', 91 '../src/utils/debugger/SkDrawCommand.h',
94 '../debugger/SkObjectParser.cpp', 92 '../src/utils/debugger/SkDrawCommand.cpp',
93 '../src/utils/debugger/SkObjectParser.h',
94 '../src/utils/debugger/SkObjectParser.cpp',
95 ], 95 ],
96 'dependencies': [ 96 'dependencies': [
97 'skia_lib.gyp:skia_lib', 97 'skia_lib.gyp:skia_lib',
98 'bench.gyp:bench_timer', 98 'bench.gyp:bench_timer',
99 'tools.gyp:picture_renderer', 99 'tools.gyp:picture_renderer',
100 ], 100 ],
101 'conditions': [ 101 'conditions': [
102 [ 'skia_os == "nacl"', { 102 [ 'skia_os == "nacl"', {
103 'include_dirs': [ 103 'include_dirs': [
104 '../src/utils', 104 '../src/utils',
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 ], 184 ],
185 }], 185 }],
186 ], 186 ],
187 } 187 }
188 188
189 # Local Variables: 189 # Local Variables:
190 # tab-width:2 190 # tab-width:2
191 # indent-tabs-mode:nil 191 # indent-tabs-mode:nil
192 # End: 192 # End:
193 # vim: set expandtab tabstop=2 shiftwidth=2: 193 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « gyp/SampleApp.gyp ('k') | gyp/gm.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698