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

Side by Side Diff: gyp/debugger.gyp

Issue 1920423002: Prototype code that turns any/every flattenable into JSON (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Fix copyright dates in new files Created 4 years, 7 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 | gyp/dm.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 # Copyright 2015 Google Inc. 1 # Copyright 2015 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 { 5 {
6 'variables': { 6 'variables': {
7 'skia_warnings_as_errors': 0, 7 'skia_warnings_as_errors': 0,
8 'conditions': [ 8 'conditions': [
9 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris"]', { 9 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris"]', {
10 # Use the systemwide Qt libs by default 10 # Use the systemwide Qt libs by default
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 '../tools', 92 '../tools',
93 '../debugger/QT', # For all the QT UI Goodies 93 '../debugger/QT', # For all the QT UI Goodies
94 '<@(qt_includes)', 94 '<@(qt_includes)',
95 ], 95 ],
96 'sources': [ 96 'sources': [
97 '../debugger/SkDebugger.cpp', 97 '../debugger/SkDebugger.cpp',
98 '../tools/debugger/SkDebugCanvas.h', 98 '../tools/debugger/SkDebugCanvas.h',
99 '../tools/debugger/SkDebugCanvas.cpp', 99 '../tools/debugger/SkDebugCanvas.cpp',
100 '../tools/debugger/SkDrawCommand.h', 100 '../tools/debugger/SkDrawCommand.h',
101 '../tools/debugger/SkDrawCommand.cpp', 101 '../tools/debugger/SkDrawCommand.cpp',
102 '../tools/debugger/SkJsonWriteBuffer.h',
103 '../tools/debugger/SkJsonWriteBuffer.cpp',
102 '../tools/debugger/SkObjectParser.h', 104 '../tools/debugger/SkObjectParser.h',
103 '../tools/debugger/SkObjectParser.cpp', 105 '../tools/debugger/SkObjectParser.cpp',
104 '../tools/debugger/SkOverdrawMode.h', 106 '../tools/debugger/SkOverdrawMode.h',
105 '../tools/debugger/SkOverdrawMode.cpp', 107 '../tools/debugger/SkOverdrawMode.cpp',
106 '../debugger/debuggermain.cpp', 108 '../debugger/debuggermain.cpp',
107 '../debugger/QT/SkDebuggerGUI.cpp', 109 '../debugger/QT/SkDebuggerGUI.cpp',
108 '../debugger/QT/SkDebuggerGUI.h', 110 '../debugger/QT/SkDebuggerGUI.h',
109 '../debugger/QT/SkDrawCommandGeometryWidget.h', 111 '../debugger/QT/SkDrawCommandGeometryWidget.h',
110 '../debugger/QT/SkDrawCommandGeometryWidget.cpp', 112 '../debugger/QT/SkDrawCommandGeometryWidget.cpp',
111 '../debugger/QT/SkCanvasWidget.cpp', 113 '../debugger/QT/SkCanvasWidget.cpp',
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
169 'outputs': [ '<(moc_gen_dir)/moc_<(RULE_INPUT_ROOT).cpp' ], 171 'outputs': [ '<(moc_gen_dir)/moc_<(RULE_INPUT_ROOT).cpp' ],
170 'action': [ '<(qt_moc)', '-DSK_SUPPORT_GPU=<(skia_gpu)', 172 'action': [ '<(qt_moc)', '-DSK_SUPPORT_GPU=<(skia_gpu)',
171 '<(RULE_INPUT_PATH)', 173 '<(RULE_INPUT_PATH)',
172 '-o', '<(moc_gen_dir)/moc_<(RULE_INPUT_ROOT).cpp' ], 174 '-o', '<(moc_gen_dir)/moc_<(RULE_INPUT_ROOT).cpp' ],
173 'message': 'Generating <(RULE_INPUT_ROOT).cpp.', 175 'message': 'Generating <(RULE_INPUT_ROOT).cpp.',
174 }, 176 },
175 ], 177 ],
176 }, 178 },
177 ], 179 ],
178 } 180 }
OLDNEW
« no previous file with comments | « no previous file | gyp/dm.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698