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

Side by Side Diff: gyp/debugger.gyp

Issue 1678893003: moved debugger support files from src/utils/debugger to tools/debugger (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 10 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/SampleApp.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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 '../include/private',
86 '../src/core', 86 '../src/core',
87 '../src/utils/debugger', 87 '../tools/debugger',
88 '../debugger', # To pull SkDebugger.h 88 '../debugger', # To pull SkDebugger.h
89 '../src/gpu', # To pull gl/GrGLUtil.h 89 '../src/gpu', # To pull gl/GrGLUtil.h
90 '../src/ports', # To pull SkFontDescriptor.h 90 '../src/ports', # To pull SkFontDescriptor.h
91 '../bench', 91 '../bench',
92 '../tools', 92 '../tools',
93 '../debugger/QT', # For all the QT UI Goodies 93 '../debugger/QT', # For all the QT UI Goodies
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 '../tools/debugger/SkDebugCanvas.h',
99 '../src/utils/debugger/SkDebugCanvas.cpp', 99 '../tools/debugger/SkDebugCanvas.cpp',
100 '../src/utils/debugger/SkDrawCommand.h', 100 '../tools/debugger/SkDrawCommand.h',
101 '../src/utils/debugger/SkDrawCommand.cpp', 101 '../tools/debugger/SkDrawCommand.cpp',
102 '../src/utils/debugger/SkObjectParser.h', 102 '../tools/debugger/SkObjectParser.h',
103 '../src/utils/debugger/SkObjectParser.cpp', 103 '../tools/debugger/SkObjectParser.cpp',
104 '../src/utils/debugger/SkOverdrawMode.h', 104 '../tools/debugger/SkOverdrawMode.h',
105 '../src/utils/debugger/SkOverdrawMode.cpp', 105 '../tools/debugger/SkOverdrawMode.cpp',
106 '../debugger/debuggermain.cpp', 106 '../debugger/debuggermain.cpp',
107 '../debugger/QT/SkDebuggerGUI.cpp', 107 '../debugger/QT/SkDebuggerGUI.cpp',
108 '../debugger/QT/SkDebuggerGUI.h', 108 '../debugger/QT/SkDebuggerGUI.h',
109 '../debugger/QT/SkDrawCommandGeometryWidget.h', 109 '../debugger/QT/SkDrawCommandGeometryWidget.h',
110 '../debugger/QT/SkDrawCommandGeometryWidget.cpp', 110 '../debugger/QT/SkDrawCommandGeometryWidget.cpp',
111 '../debugger/QT/SkCanvasWidget.cpp', 111 '../debugger/QT/SkCanvasWidget.cpp',
112 '../debugger/QT/SkCanvasWidget.h', 112 '../debugger/QT/SkCanvasWidget.h',
113 '../debugger/QT/SkInspectorWidget.h', 113 '../debugger/QT/SkInspectorWidget.h',
114 '../debugger/QT/SkInspectorWidget.cpp', 114 '../debugger/QT/SkInspectorWidget.cpp',
115 '../debugger/QT/SkListWidget.h', 115 '../debugger/QT/SkListWidget.h',
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
166 'outputs': [ '<(moc_gen_dir)/moc_<(RULE_INPUT_ROOT).cpp' ], 166 'outputs': [ '<(moc_gen_dir)/moc_<(RULE_INPUT_ROOT).cpp' ],
167 'action': [ '<(qt_moc)', '-DSK_SUPPORT_GPU=<(skia_gpu)', 167 'action': [ '<(qt_moc)', '-DSK_SUPPORT_GPU=<(skia_gpu)',
168 '<(RULE_INPUT_PATH)', 168 '<(RULE_INPUT_PATH)',
169 '-o', '<(moc_gen_dir)/moc_<(RULE_INPUT_ROOT).cpp' ], 169 '-o', '<(moc_gen_dir)/moc_<(RULE_INPUT_ROOT).cpp' ],
170 'message': 'Generating <(RULE_INPUT_ROOT).cpp.', 170 'message': 'Generating <(RULE_INPUT_ROOT).cpp.',
171 }, 171 },
172 ], 172 ],
173 }, 173 },
174 ], 174 ],
175 } 175 }
OLDNEW
« no previous file with comments | « gyp/SampleApp.gyp ('k') | gyp/dm.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698