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

Side by Side Diff: gyp/debugger.gyp

Issue 1818043003: unified PNG encoding between SkDrawCommand and skiaserve (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 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 | « no previous file | gyp/gmslides.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", "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 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 '<(moc_gen_dir)/moc_SkDrawCommandGeometryWidget.cpp', 130 '<(moc_gen_dir)/moc_SkDrawCommandGeometryWidget.cpp',
131 '<(moc_gen_dir)/moc_SkInspectorWidget.cpp', 131 '<(moc_gen_dir)/moc_SkInspectorWidget.cpp',
132 '<(moc_gen_dir)/moc_SkSettingsWidget.cpp', 132 '<(moc_gen_dir)/moc_SkSettingsWidget.cpp',
133 '<(moc_gen_dir)/moc_SkRasterWidget.cpp', 133 '<(moc_gen_dir)/moc_SkRasterWidget.cpp',
134 '<(moc_gen_dir)/moc_SkGLWidget.cpp', 134 '<(moc_gen_dir)/moc_SkGLWidget.cpp',
135 ], 135 ],
136 'dependencies': [ 136 'dependencies': [
137 'debugger_qt_mocs', 137 'debugger_qt_mocs',
138 'skia_lib.gyp:skia_lib', 138 'skia_lib.gyp:skia_lib',
139 'jsoncpp.gyp:jsoncpp', 139 'jsoncpp.gyp:jsoncpp',
140 'libpng.gyp:libpng',
140 'tools.gyp:url_data_manager', 141 'tools.gyp:url_data_manager',
141 ], 142 ],
142 'cflags': [ 143 'cflags': [
143 # Clang gets confused by QWeakPointer, see http://llvm.org/bugs/show_bug .cgi?id=13127 144 # Clang gets confused by QWeakPointer, see http://llvm.org/bugs/show_bug .cgi?id=13127
144 '-Wno-uninitialized', 145 '-Wno-uninitialized',
145 ], 146 ],
146 'link_settings': { 147 'link_settings': {
147 'libraries': [ 148 'libraries': [
148 '<@(qt_libs)', 149 '<@(qt_libs)',
149 ], 150 ],
(...skipping 18 matching lines...) Expand all
168 'outputs': [ '<(moc_gen_dir)/moc_<(RULE_INPUT_ROOT).cpp' ], 169 'outputs': [ '<(moc_gen_dir)/moc_<(RULE_INPUT_ROOT).cpp' ],
169 'action': [ '<(qt_moc)', '-DSK_SUPPORT_GPU=<(skia_gpu)', 170 'action': [ '<(qt_moc)', '-DSK_SUPPORT_GPU=<(skia_gpu)',
170 '<(RULE_INPUT_PATH)', 171 '<(RULE_INPUT_PATH)',
171 '-o', '<(moc_gen_dir)/moc_<(RULE_INPUT_ROOT).cpp' ], 172 '-o', '<(moc_gen_dir)/moc_<(RULE_INPUT_ROOT).cpp' ],
172 'message': 'Generating <(RULE_INPUT_ROOT).cpp.', 173 'message': 'Generating <(RULE_INPUT_ROOT).cpp.',
173 }, 174 },
174 ], 175 ],
175 }, 176 },
176 ], 177 ],
177 } 178 }
OLDNEW
« no previous file with comments | « no previous file | gyp/gmslides.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698