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

Side by Side Diff: gyp/tools.gyp

Issue 12639008: Add build condition not to build in iOS an unused lib (failing to build empty lib in iOS). Unreview… (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 9 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 | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # GYP file to build various tools. 1 # GYP file to build various tools.
2 # 2 #
3 # To build on Linux: 3 # To build on Linux:
4 # ./gyp_skia tools.gyp && make tools 4 # ./gyp_skia tools.gyp && make tools
5 # 5 #
6 # Building on other platforms not tested yet. 6 # Building on other platforms not tested yet.
7 # 7 #
8 { 8 {
9 'includes': [ 9 'includes': [
10 'apptype_console.gypi', 10 'apptype_console.gypi',
(...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after
261 '../debugger/SkObjectParser.h', 261 '../debugger/SkObjectParser.h',
262 '../debugger/SkObjectParser.cpp', 262 '../debugger/SkObjectParser.cpp',
263 ], 263 ],
264 'dependencies': [ 264 'dependencies': [
265 'skia_base_libs.gyp:skia_base_libs', 265 'skia_base_libs.gyp:skia_base_libs',
266 'effects.gyp:effects', 266 'effects.gyp:effects',
267 'images.gyp:images', 267 'images.gyp:images',
268 'tools.gyp:picture_utils', 268 'tools.gyp:picture_utils',
269 ], 269 ],
270 }, 270 },
271 { 271 ],
272 'target_name': 'win_dbghelp', 272 'conditions': [
273 'type': 'static_library', 273 ['skia_win_debuggers_path and skia_os == "win"',
274 'defines': [ 274 {
275 'SK_CDB_PATH="<(skia_win_debuggers_path)"', 275 'targets': [
276 ], 276 {
277 'sources': [ 277 'target_name': 'win_dbghelp',
278 '../tools/win_dbghelp.h', 278 'type': 'static_library',
279 '../tools/win_dbghelp.cpp', 279 'defines': [
280 ], 280 'SK_CDB_PATH="<(skia_win_debuggers_path)"',
281 }, 281 ],
282 'sources': [
283 '../tools/win_dbghelp.h',
284 '../tools/win_dbghelp.cpp',
285 ],
286 },
287 ],
288 },
289 ],
282 ], 290 ],
283 } 291 }
284 292
285 # Local Variables: 293 # Local Variables:
286 # tab-width:2 294 # tab-width:2
287 # indent-tabs-mode:nil 295 # indent-tabs-mode:nil
288 # End: 296 # End:
289 # vim: set expandtab tabstop=2 shiftwidth=2: 297 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698