Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(155)

Side by Side Diff: gyp/debugger.gyp

Issue 1265443002: add -Iinclude/private anywhere we have -Isrc/core (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « gyp/core.gyp ('k') | gyp/dm.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « gyp/core.gyp ('k') | gyp/dm.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698