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

Side by Side Diff: trunk/gyp/debugger.gyp

Issue 14771017: Copy NaCl directory into trunk/platform_tools, adjust paths (Closed) Base URL: http://skia.googlecode.com/svn/
Patch Set: Created 7 years, 7 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | trunk/gyp/nacl.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 'variables': { 2 'variables': {
3 'conditions': [ 3 'conditions': [
4 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris"]', { 4 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris"]', {
5 # Use the systemwide Qt libs by default 5 # Use the systemwide Qt libs by default
6 'variables': { 6 'variables': {
7 'qt_sdk%': '/usr', 7 'qt_sdk%': '/usr',
8 }, 8 },
9 'qt_sdk': '<(qt_sdk)', 9 'qt_sdk': '<(qt_sdk)',
10 'qt_moc%': 'moc', 10 'qt_moc%': 'moc',
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 ], 102 ],
103 'conditions': [ 103 'conditions': [
104 [ 'skia_os == "nacl"', { 104 [ 'skia_os == "nacl"', {
105 'dependencies': [ 105 'dependencies': [
106 'utils.gyp:utils', # For SkBase64.h 106 'utils.gyp:utils', # For SkBase64.h
107 ], 107 ],
108 'include_dirs': [ 108 'include_dirs': [
109 '../src/utils', 109 '../src/utils',
110 ], 110 ],
111 'sources': [ 111 'sources': [
112 '../../nacl/src/nacl_debugger.cpp', 112 '../platform_tools/nacl/src/nacl_debugger.cpp',
113 ], 113 ],
114 }, { # skia_os != "nacl" 114 }, { # skia_os != "nacl"
115 'include_dirs': [ 115 'include_dirs': [
116 '../debugger/QT', # For all the QT UI Goodies 116 '../debugger/QT', # For all the QT UI Goodies
117 '<@(qt_includes)', 117 '<@(qt_includes)',
118 ], 118 ],
119 'sources': [ 119 'sources': [
120 '../debugger/debuggermain.cpp', 120 '../debugger/debuggermain.cpp',
121 '../debugger/QT/SkDebuggerGUI.cpp', 121 '../debugger/QT/SkDebuggerGUI.cpp',
122 '../debugger/QT/SkDebuggerGUI.h', 122 '../debugger/QT/SkDebuggerGUI.h',
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
189 ], 189 ],
190 }], 190 }],
191 ], 191 ],
192 } 192 }
193 193
194 # Local Variables: 194 # Local Variables:
195 # tab-width:2 195 # tab-width:2
196 # indent-tabs-mode:nil 196 # indent-tabs-mode:nil
197 # End: 197 # End:
198 # vim: set expandtab tabstop=2 shiftwidth=2: 198 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « no previous file | trunk/gyp/nacl.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698