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

Side by Side Diff: gyp/debugger.gyp

Issue 1416723006: Get debugger compiling again (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Remove extra spacer Created 5 years, 1 month 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 | « debugger/QT/SkDebuggerGUI.cpp ('k') | no next file » | 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", "chromeos"]', { 9 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "chromeos"]', {
10 # Use the systemwide Qt libs by default 10 # Use the systemwide Qt libs by default
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 '<(moc_gen_dir)/moc_SkDebuggerGUI.cpp', 127 '<(moc_gen_dir)/moc_SkDebuggerGUI.cpp',
128 '<(moc_gen_dir)/moc_SkDrawCommandGeometryWidget.cpp', 128 '<(moc_gen_dir)/moc_SkDrawCommandGeometryWidget.cpp',
129 '<(moc_gen_dir)/moc_SkInspectorWidget.cpp', 129 '<(moc_gen_dir)/moc_SkInspectorWidget.cpp',
130 '<(moc_gen_dir)/moc_SkSettingsWidget.cpp', 130 '<(moc_gen_dir)/moc_SkSettingsWidget.cpp',
131 '<(moc_gen_dir)/moc_SkRasterWidget.cpp', 131 '<(moc_gen_dir)/moc_SkRasterWidget.cpp',
132 '<(moc_gen_dir)/moc_SkGLWidget.cpp', 132 '<(moc_gen_dir)/moc_SkGLWidget.cpp',
133 ], 133 ],
134 'dependencies': [ 134 'dependencies': [
135 'debugger_qt_mocs', 135 'debugger_qt_mocs',
136 'skia_lib.gyp:skia_lib', 136 'skia_lib.gyp:skia_lib',
137 'tools.gyp:picture_renderer',
138 'tools.gyp:timer',
139 ], 137 ],
140 'cflags': [ 138 'cflags': [
141 # Clang gets confused by QWeakPointer, see http://llvm.org/bugs/show_bug .cgi?id=13127 139 # Clang gets confused by QWeakPointer, see http://llvm.org/bugs/show_bug .cgi?id=13127
142 '-Wno-uninitialized', 140 '-Wno-uninitialized',
143 ], 141 ],
144 'link_settings': { 142 'link_settings': {
145 'libraries': [ 143 'libraries': [
146 '<@(qt_libs)', 144 '<@(qt_libs)',
147 ], 145 ],
148 }, 146 },
(...skipping 17 matching lines...) Expand all
166 'outputs': [ '<(moc_gen_dir)/moc_<(RULE_INPUT_ROOT).cpp' ], 164 'outputs': [ '<(moc_gen_dir)/moc_<(RULE_INPUT_ROOT).cpp' ],
167 'action': [ '<(qt_moc)', '-DSK_SUPPORT_GPU=<(skia_gpu)', 165 'action': [ '<(qt_moc)', '-DSK_SUPPORT_GPU=<(skia_gpu)',
168 '<(RULE_INPUT_PATH)', 166 '<(RULE_INPUT_PATH)',
169 '-o', '<(moc_gen_dir)/moc_<(RULE_INPUT_ROOT).cpp' ], 167 '-o', '<(moc_gen_dir)/moc_<(RULE_INPUT_ROOT).cpp' ],
170 'message': 'Generating <(RULE_INPUT_ROOT).cpp.', 168 'message': 'Generating <(RULE_INPUT_ROOT).cpp.',
171 }, 169 },
172 ], 170 ],
173 }, 171 },
174 ], 172 ],
175 } 173 }
OLDNEW
« no previous file with comments | « debugger/QT/SkDebuggerGUI.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698