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

Side by Side Diff: build/SConscript.main

Issue 2440: Now that the V8 changes to SConscript are in trunk, enable... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 12 years, 3 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 | build/SConscript.v8 » ('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 2008, Google Inc. 1 # Copyright 2008, Google Inc.
2 # All rights reserved. 2 # All rights reserved.
3 # 3 #
4 # Redistribution and use in source and binary forms, with or without 4 # Redistribution and use in source and binary forms, with or without
5 # modification, are permitted provided that the following conditions are 5 # modification, are permitted provided that the following conditions are
6 # met: 6 # met:
7 # 7 #
8 # * Redistributions of source code must retain the above copyright 8 # * Redistributions of source code must retain the above copyright
9 # notice, this list of conditions and the following disclaimer. 9 # notice, this list of conditions and the following disclaimer.
10 # * Redistributions in binary form must reproduce the above 10 # * Redistributions in binary form must reproduce the above
(...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after
324 324
325 # For now, linux only loads the components we know work on Linux, by default. 325 # For now, linux only loads the components we know work on Linux, by default.
326 load = [ 326 load = [
327 'base', 327 'base',
328 'breakpad', 328 'breakpad',
329 'googleurl', 329 'googleurl',
330 'net', 330 'net',
331 'skia', 331 'skia',
332 'testing', 332 'testing',
333 'third_party', 333 'third_party',
334 'v8',
334 'webkit', 335 'webkit',
335 ] 336 ]
336 337
337 # TODO: fix code that triggers these warnings. 338 # TODO: fix code that triggers these warnings.
338 excluded_warnings = [ 339 excluded_warnings = [
339 '-Wno-unknown-pragmas', # TODO: remove all the Windows-specific #pragmas. 340 '-Wno-unknown-pragmas', # TODO: remove all the Windows-specific #pragmas.
340 '-Wno-unused-function', # TODO: there's just one Skia function. 341 '-Wno-unused-function', # TODO: there's just one Skia function.
341 '-Wno-unused-variable', # TODO: there's just one v8 function. 342 '-Wno-unused-variable', # TODO: there's just one v8 function.
342 '-Wno-switch', # TODO: this is likely masking real bugs. 343 '-Wno-switch', # TODO: this is likely masking real bugs.
343 '-Wno-sign-compare', # TODO: this is likely masking real bugs. 344 '-Wno-sign-compare', # TODO: this is likely masking real bugs.
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
509 initial_indent = ' '*32, 510 initial_indent = ' '*32,
510 subsequent_indent = ' '*32, 511 subsequent_indent = ' '*32,
511 ) 512 )
512 components = tw.fill(', '.join(components)) 513 components = tw.fill(', '.join(components))
513 514
514 Help(help_fmt % components) 515 Help(help_fmt % components)
515 516
516 517
517 Import('build_component') 518 Import('build_component')
518 Default(build_component) 519 Default(build_component)
OLDNEW
« no previous file with comments | « no previous file | build/SConscript.v8 » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698