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', |
85 '../src/core', | 86 '../src/core', |
86 '../src/utils/debugger', | 87 '../src/utils/debugger', |
87 '../debugger', # To pull SkDebugger.h | 88 '../debugger', # To pull SkDebugger.h |
88 '../src/gpu', # To pull gl/GrGLUtil.h | 89 '../src/gpu', # To pull gl/GrGLUtil.h |
89 '../src/ports', # To pull SkFontDescriptor.h | 90 '../src/ports', # To pull SkFontDescriptor.h |
90 '../bench', | 91 '../bench', |
91 '../tools', | 92 '../tools', |
92 '../debugger/QT', # For all the QT UI Goodies | 93 '../debugger/QT', # For all the QT UI Goodies |
93 '<@(qt_includes)', | 94 '<@(qt_includes)', |
94 ], | 95 ], |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
165 'outputs': [ '<(moc_gen_dir)/moc_<(RULE_INPUT_ROOT).cpp' ], | 166 'outputs': [ '<(moc_gen_dir)/moc_<(RULE_INPUT_ROOT).cpp' ], |
166 'action': [ '<(qt_moc)', '-DSK_SUPPORT_GPU=<(skia_gpu)', | 167 'action': [ '<(qt_moc)', '-DSK_SUPPORT_GPU=<(skia_gpu)', |
167 '<(RULE_INPUT_PATH)', | 168 '<(RULE_INPUT_PATH)', |
168 '-o', '<(moc_gen_dir)/moc_<(RULE_INPUT_ROOT).cpp' ], | 169 '-o', '<(moc_gen_dir)/moc_<(RULE_INPUT_ROOT).cpp' ], |
169 'message': 'Generating <(RULE_INPUT_ROOT).cpp.', | 170 'message': 'Generating <(RULE_INPUT_ROOT).cpp.', |
170 }, | 171 }, |
171 ], | 172 ], |
172 }, | 173 }, |
173 ], | 174 ], |
174 } | 175 } |
OLD | NEW |