OLD | NEW |
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 Loading... |
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 Loading... |
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) |
OLD | NEW |