OLD | NEW |
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 Loading... |
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 'tools.gyp:url_data_manager', |
140 ], | 141 ], |
141 'cflags': [ | 142 'cflags': [ |
142 # Clang gets confused by QWeakPointer, see http://llvm.org/bugs/show_bug
.cgi?id=13127 | 143 # Clang gets confused by QWeakPointer, see http://llvm.org/bugs/show_bug
.cgi?id=13127 |
143 '-Wno-uninitialized', | 144 '-Wno-uninitialized', |
144 ], | 145 ], |
145 'link_settings': { | 146 'link_settings': { |
146 'libraries': [ | 147 'libraries': [ |
147 '<@(qt_libs)', | 148 '<@(qt_libs)', |
148 ], | 149 ], |
149 }, | 150 }, |
(...skipping 17 matching lines...) Expand all Loading... |
167 'outputs': [ '<(moc_gen_dir)/moc_<(RULE_INPUT_ROOT).cpp' ], | 168 'outputs': [ '<(moc_gen_dir)/moc_<(RULE_INPUT_ROOT).cpp' ], |
168 'action': [ '<(qt_moc)', '-DSK_SUPPORT_GPU=<(skia_gpu)', | 169 'action': [ '<(qt_moc)', '-DSK_SUPPORT_GPU=<(skia_gpu)', |
169 '<(RULE_INPUT_PATH)', | 170 '<(RULE_INPUT_PATH)', |
170 '-o', '<(moc_gen_dir)/moc_<(RULE_INPUT_ROOT).cpp' ], | 171 '-o', '<(moc_gen_dir)/moc_<(RULE_INPUT_ROOT).cpp' ], |
171 'message': 'Generating <(RULE_INPUT_ROOT).cpp.', | 172 'message': 'Generating <(RULE_INPUT_ROOT).cpp.', |
172 }, | 173 }, |
173 ], | 174 ], |
174 }, | 175 }, |
175 ], | 176 ], |
176 } | 177 } |
OLD | NEW |