| 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"]', { | 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 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 '<(moc_gen_dir)/moc_SkInspectorWidget.cpp', | 133 '<(moc_gen_dir)/moc_SkInspectorWidget.cpp', |
| 134 '<(moc_gen_dir)/moc_SkSettingsWidget.cpp', | 134 '<(moc_gen_dir)/moc_SkSettingsWidget.cpp', |
| 135 '<(moc_gen_dir)/moc_SkRasterWidget.cpp', | 135 '<(moc_gen_dir)/moc_SkRasterWidget.cpp', |
| 136 '<(moc_gen_dir)/moc_SkGLWidget.cpp', | 136 '<(moc_gen_dir)/moc_SkGLWidget.cpp', |
| 137 ], | 137 ], |
| 138 'dependencies': [ | 138 'dependencies': [ |
| 139 'debugger_qt_mocs', | 139 'debugger_qt_mocs', |
| 140 'skia_lib.gyp:skia_lib', | 140 'skia_lib.gyp:skia_lib', |
| 141 'jsoncpp.gyp:jsoncpp', | 141 'jsoncpp.gyp:jsoncpp', |
| 142 'libpng.gyp:libpng', | 142 'libpng.gyp:libpng', |
| 143 'tools.gyp:picture_utils', |
| 143 'tools.gyp:url_data_manager', | 144 'tools.gyp:url_data_manager', |
| 144 ], | 145 ], |
| 145 'cflags': [ | 146 'cflags': [ |
| 146 # Clang gets confused by QWeakPointer, see http://llvm.org/bugs/show_bug
.cgi?id=13127 | 147 # Clang gets confused by QWeakPointer, see http://llvm.org/bugs/show_bug
.cgi?id=13127 |
| 147 '-Wno-uninitialized', | 148 '-Wno-uninitialized', |
| 148 ], | 149 ], |
| 149 'link_settings': { | 150 'link_settings': { |
| 150 'libraries': [ | 151 'libraries': [ |
| 151 '<@(qt_libs)', | 152 '<@(qt_libs)', |
| 152 ], | 153 ], |
| (...skipping 18 matching lines...) Expand all Loading... |
| 171 'outputs': [ '<(moc_gen_dir)/moc_<(RULE_INPUT_ROOT).cpp' ], | 172 'outputs': [ '<(moc_gen_dir)/moc_<(RULE_INPUT_ROOT).cpp' ], |
| 172 'action': [ '<(qt_moc)', '-DSK_SUPPORT_GPU=<(skia_gpu)', | 173 'action': [ '<(qt_moc)', '-DSK_SUPPORT_GPU=<(skia_gpu)', |
| 173 '<(RULE_INPUT_PATH)', | 174 '<(RULE_INPUT_PATH)', |
| 174 '-o', '<(moc_gen_dir)/moc_<(RULE_INPUT_ROOT).cpp' ], | 175 '-o', '<(moc_gen_dir)/moc_<(RULE_INPUT_ROOT).cpp' ], |
| 175 'message': 'Generating <(RULE_INPUT_ROOT).cpp.', | 176 'message': 'Generating <(RULE_INPUT_ROOT).cpp.', |
| 176 }, | 177 }, |
| 177 ], | 178 ], |
| 178 }, | 179 }, |
| 179 ], | 180 ], |
| 180 } | 181 } |
| OLD | NEW |