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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
75 }, | 75 }, |
76 'targets': [ | 76 'targets': [ |
77 { | 77 { |
78 'target_name': 'debugger', | 78 'target_name': 'debugger', |
79 'type': 'executable', | 79 'type': 'executable', |
80 'mac_bundle': 1, | 80 'mac_bundle': 1, |
81 'mac_framework_dirs': [ | 81 'mac_framework_dirs': [ |
82 '/Library/Frameworks', | 82 '/Library/Frameworks', |
83 ], | 83 ], |
84 'include_dirs' : [ | 84 'include_dirs' : [ |
85 '../include/private', | |
86 '../src/core', | 85 '../src/core', |
87 '../src/utils/debugger', | 86 '../src/utils/debugger', |
88 '../debugger', # To pull SkDebugger.h | 87 '../debugger', # To pull SkDebugger.h |
89 '../src/gpu', # To pull gl/GrGLUtil.h | 88 '../src/gpu', # To pull gl/GrGLUtil.h |
90 '../src/ports', # To pull SkFontDescriptor.h | 89 '../src/ports', # To pull SkFontDescriptor.h |
91 '../bench', | 90 '../bench', |
92 '../tools', | 91 '../tools', |
93 '../debugger/QT', # For all the QT UI Goodies | 92 '../debugger/QT', # For all the QT UI Goodies |
94 '<@(qt_includes)', | 93 '<@(qt_includes)', |
95 ], | 94 ], |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
166 'outputs': [ '<(moc_gen_dir)/moc_<(RULE_INPUT_ROOT).cpp' ], | 165 'outputs': [ '<(moc_gen_dir)/moc_<(RULE_INPUT_ROOT).cpp' ], |
167 'action': [ '<(qt_moc)', '-DSK_SUPPORT_GPU=<(skia_gpu)', | 166 'action': [ '<(qt_moc)', '-DSK_SUPPORT_GPU=<(skia_gpu)', |
168 '<(RULE_INPUT_PATH)', | 167 '<(RULE_INPUT_PATH)', |
169 '-o', '<(moc_gen_dir)/moc_<(RULE_INPUT_ROOT).cpp' ], | 168 '-o', '<(moc_gen_dir)/moc_<(RULE_INPUT_ROOT).cpp' ], |
170 'message': 'Generating <(RULE_INPUT_ROOT).cpp.', | 169 'message': 'Generating <(RULE_INPUT_ROOT).cpp.', |
171 }, | 170 }, |
172 ], | 171 ], |
173 }, | 172 }, |
174 ], | 173 ], |
175 } | 174 } |
OLD | NEW |