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', | |
106 '../debugger/debuggermain.cpp', | 104 '../debugger/debuggermain.cpp', |
107 '../debugger/QT/SkDebuggerGUI.cpp', | 105 '../debugger/QT/SkDebuggerGUI.cpp', |
108 '../debugger/QT/SkDebuggerGUI.h', | 106 '../debugger/QT/SkDebuggerGUI.h', |
109 '../debugger/QT/SkDrawCommandGeometryWidget.h', | 107 '../debugger/QT/SkDrawCommandGeometryWidget.h', |
110 '../debugger/QT/SkDrawCommandGeometryWidget.cpp', | 108 '../debugger/QT/SkDrawCommandGeometryWidget.cpp', |
111 '../debugger/QT/SkCanvasWidget.cpp', | 109 '../debugger/QT/SkCanvasWidget.cpp', |
112 '../debugger/QT/SkCanvasWidget.h', | 110 '../debugger/QT/SkCanvasWidget.h', |
113 '../debugger/QT/SkInspectorWidget.h', | 111 '../debugger/QT/SkInspectorWidget.h', |
114 '../debugger/QT/SkInspectorWidget.cpp', | 112 '../debugger/QT/SkInspectorWidget.cpp', |
115 '../debugger/QT/SkListWidget.h', | 113 '../debugger/QT/SkListWidget.h', |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
166 'outputs': [ '<(moc_gen_dir)/moc_<(RULE_INPUT_ROOT).cpp' ], | 164 'outputs': [ '<(moc_gen_dir)/moc_<(RULE_INPUT_ROOT).cpp' ], |
167 'action': [ '<(qt_moc)', '-DSK_SUPPORT_GPU=<(skia_gpu)', | 165 'action': [ '<(qt_moc)', '-DSK_SUPPORT_GPU=<(skia_gpu)', |
168 '<(RULE_INPUT_PATH)', | 166 '<(RULE_INPUT_PATH)', |
169 '-o', '<(moc_gen_dir)/moc_<(RULE_INPUT_ROOT).cpp' ], | 167 '-o', '<(moc_gen_dir)/moc_<(RULE_INPUT_ROOT).cpp' ], |
170 'message': 'Generating <(RULE_INPUT_ROOT).cpp.', | 168 'message': 'Generating <(RULE_INPUT_ROOT).cpp.', |
171 }, | 169 }, |
172 ], | 170 ], |
173 }, | 171 }, |
174 ], | 172 ], |
175 } | 173 } |
OLD | NEW |