| 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"]', { |
| 10 # Use the systemwide Qt libs by default | 10 # Use the systemwide Qt libs by default |
| 11 'variables': { | 11 'variables': { |
| 12 'qt_sdk%': '/usr', | 12 'qt_sdk%': '/usr', |
| 13 }, | 13 }, |
| 14 'qt_sdk': '<(qt_sdk)', | 14 'qt_sdk': '<(qt_sdk)', |
| 15 'qt_moc%': 'moc', | 15 'qt_moc%': 'moc', |
| 16 'qt_includes': [ | 16 'qt_includes': [ |
| 17 '<(qt_sdk)/include', | 17 '<(qt_sdk)/include', |
| 18 '<(qt_sdk)/include/QtCore', | 18 '<(qt_sdk)/include/QtCore', |
| 19 '<(qt_sdk)/include/QtGui', | 19 '<(qt_sdk)/include/QtGui', |
| (...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 'outputs': [ '<(moc_gen_dir)/moc_<(RULE_INPUT_ROOT).cpp' ], | 169 'outputs': [ '<(moc_gen_dir)/moc_<(RULE_INPUT_ROOT).cpp' ], |
| 170 'action': [ '<(qt_moc)', '-DSK_SUPPORT_GPU=<(skia_gpu)', | 170 'action': [ '<(qt_moc)', '-DSK_SUPPORT_GPU=<(skia_gpu)', |
| 171 '<(RULE_INPUT_PATH)', | 171 '<(RULE_INPUT_PATH)', |
| 172 '-o', '<(moc_gen_dir)/moc_<(RULE_INPUT_ROOT).cpp' ], | 172 '-o', '<(moc_gen_dir)/moc_<(RULE_INPUT_ROOT).cpp' ], |
| 173 'message': 'Generating <(RULE_INPUT_ROOT).cpp.', | 173 'message': 'Generating <(RULE_INPUT_ROOT).cpp.', |
| 174 }, | 174 }, |
| 175 ], | 175 ], |
| 176 }, | 176 }, |
| 177 ], | 177 ], |
| 178 } | 178 } |
| OLD | NEW |