| 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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 '<@(qt_includes)', | 94 '<@(qt_includes)', |
| 95 ], | 95 ], |
| 96 'sources': [ | 96 'sources': [ |
| 97 '../debugger/SkDebugger.cpp', | 97 '../debugger/SkDebugger.cpp', |
| 98 '../src/utils/debugger/SkDebugCanvas.h', | 98 '../src/utils/debugger/SkDebugCanvas.h', |
| 99 '../src/utils/debugger/SkDebugCanvas.cpp', | 99 '../src/utils/debugger/SkDebugCanvas.cpp', |
| 100 '../src/utils/debugger/SkDrawCommand.h', | 100 '../src/utils/debugger/SkDrawCommand.h', |
| 101 '../src/utils/debugger/SkDrawCommand.cpp', | 101 '../src/utils/debugger/SkDrawCommand.cpp', |
| 102 '../src/utils/debugger/SkObjectParser.h', | 102 '../src/utils/debugger/SkObjectParser.h', |
| 103 '../src/utils/debugger/SkObjectParser.cpp', | 103 '../src/utils/debugger/SkObjectParser.cpp', |
| 104 '../src/utils/debugger/SkOverdrawMode.h', |
| 105 '../src/utils/debugger/SkOverdrawMode.cpp', |
| 104 '../debugger/debuggermain.cpp', | 106 '../debugger/debuggermain.cpp', |
| 105 '../debugger/QT/SkDebuggerGUI.cpp', | 107 '../debugger/QT/SkDebuggerGUI.cpp', |
| 106 '../debugger/QT/SkDebuggerGUI.h', | 108 '../debugger/QT/SkDebuggerGUI.h', |
| 107 '../debugger/QT/SkDrawCommandGeometryWidget.h', | 109 '../debugger/QT/SkDrawCommandGeometryWidget.h', |
| 108 '../debugger/QT/SkDrawCommandGeometryWidget.cpp', | 110 '../debugger/QT/SkDrawCommandGeometryWidget.cpp', |
| 109 '../debugger/QT/SkCanvasWidget.cpp', | 111 '../debugger/QT/SkCanvasWidget.cpp', |
| 110 '../debugger/QT/SkCanvasWidget.h', | 112 '../debugger/QT/SkCanvasWidget.h', |
| 111 '../debugger/QT/SkInspectorWidget.h', | 113 '../debugger/QT/SkInspectorWidget.h', |
| 112 '../debugger/QT/SkInspectorWidget.cpp', | 114 '../debugger/QT/SkInspectorWidget.cpp', |
| 113 '../debugger/QT/SkListWidget.h', | 115 '../debugger/QT/SkListWidget.h', |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 164 'outputs': [ '<(moc_gen_dir)/moc_<(RULE_INPUT_ROOT).cpp' ], | 166 'outputs': [ '<(moc_gen_dir)/moc_<(RULE_INPUT_ROOT).cpp' ], |
| 165 'action': [ '<(qt_moc)', '-DSK_SUPPORT_GPU=<(skia_gpu)', | 167 'action': [ '<(qt_moc)', '-DSK_SUPPORT_GPU=<(skia_gpu)', |
| 166 '<(RULE_INPUT_PATH)', | 168 '<(RULE_INPUT_PATH)', |
| 167 '-o', '<(moc_gen_dir)/moc_<(RULE_INPUT_ROOT).cpp' ], | 169 '-o', '<(moc_gen_dir)/moc_<(RULE_INPUT_ROOT).cpp' ], |
| 168 'message': 'Generating <(RULE_INPUT_ROOT).cpp.', | 170 'message': 'Generating <(RULE_INPUT_ROOT).cpp.', |
| 169 }, | 171 }, |
| 170 ], | 172 ], |
| 171 }, | 173 }, |
| 172 ], | 174 ], |
| 173 } | 175 } |
| OLD | NEW |