| 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 '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 Loading... |
| 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 } |
| OLD | NEW |