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

Side by Side Diff: site_scons/site_tools/component_builders.py

Issue 174369: Linux: fix a couple problems that Lintian reports for the .deb file:... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/o3d/
Patch Set: '' Created 11 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 | « plugin/build.scons ('k') | 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 #!/usr/bin/python2.4 1 #!/usr/bin/python2.4
2 # Copyright 2009, Google Inc. 2 # Copyright 2009, Google Inc.
3 # All rights reserved. 3 # All rights reserved.
4 # 4 #
5 # Redistribution and use in source and binary forms, with or without 5 # Redistribution and use in source and binary forms, with or without
6 # modification, are permitted provided that the following conditions are 6 # modification, are permitted provided that the following conditions are
7 # met: 7 # met:
8 # 8 #
9 # * Redistributions of source code must retain the above copyright 9 # * Redistributions of source code must retain the above copyright
10 # notice, this list of conditions and the following disclaimer. 10 # notice, this list of conditions and the following disclaimer.
(...skipping 535 matching lines...) Expand 10 before | Expand all | Expand 10 after
546 COMPONENT_TEST_TIMEOUT={'large': 900, 'medium': 450, 'small': 180}, 546 COMPONENT_TEST_TIMEOUT={'large': 900, 'medium': 450, 'small': 180},
547 # Tests are enabled by default 547 # Tests are enabled by default
548 COMPONENT_TEST_ENABLED=True, 548 COMPONENT_TEST_ENABLED=True,
549 # Static linking is a sensible default 549 # Static linking is a sensible default
550 COMPONENT_STATIC=True, 550 COMPONENT_STATIC=True,
551 # Don't publish libraries to the staging dir by themselves by default. 551 # Don't publish libraries to the staging dir by themselves by default.
552 COMPONENT_LIBRARY_PUBLISH=False, 552 COMPONENT_LIBRARY_PUBLISH=False,
553 ) 553 )
554 env.Append( 554 env.Append(
555 LIBPATH=['$LIB_DIR'], 555 LIBPATH=['$LIB_DIR'],
556 RPATH=['$LIB_DIR'],
557 556
558 # Default alias groups for component builders 557 # Default alias groups for component builders
559 COMPONENT_PACKAGE_GROUPS=['all_packages'], 558 COMPONENT_PACKAGE_GROUPS=['all_packages'],
560 COMPONENT_LIBRARY_GROUPS=['all_libraries'], 559 COMPONENT_LIBRARY_GROUPS=['all_libraries'],
561 COMPONENT_PROGRAM_GROUPS=['all_programs'], 560 COMPONENT_PROGRAM_GROUPS=['all_programs'],
562 COMPONENT_TEST_PROGRAM_GROUPS=['all_test_programs'], 561 COMPONENT_TEST_PROGRAM_GROUPS=['all_test_programs'],
563 COMPONENT_TEST_OUTPUT_GROUPS=['run_all_tests'], 562 COMPONENT_TEST_OUTPUT_GROUPS=['run_all_tests'],
564 563
565 # Additional components whose resources should be copied into program 564 # Additional components whose resources should be copied into program
566 # directories, in addition to those from LIBS and the program itself. 565 # directories, in addition to those from LIBS and the program itself.
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
610 AddTargetGroup('all_libraries', 'libraries can be built') 609 AddTargetGroup('all_libraries', 'libraries can be built')
611 AddTargetGroup('all_programs', 'programs can be built') 610 AddTargetGroup('all_programs', 'programs can be built')
612 AddTargetGroup('all_test_programs', 'tests can be built') 611 AddTargetGroup('all_test_programs', 'tests can be built')
613 AddTargetGroup('all_packages', 'packages can be built') 612 AddTargetGroup('all_packages', 'packages can be built')
614 AddTargetGroup('run_all_tests', 'tests can be run') 613 AddTargetGroup('run_all_tests', 'tests can be run')
615 AddTargetGroup('run_disabled_tests', 'tests are disabled') 614 AddTargetGroup('run_disabled_tests', 'tests are disabled')
616 AddTargetGroup('run_small_tests', 'small tests can be run') 615 AddTargetGroup('run_small_tests', 'small tests can be run')
617 AddTargetGroup('run_medium_tests', 'medium tests can be run') 616 AddTargetGroup('run_medium_tests', 'medium tests can be run')
618 AddTargetGroup('run_large_tests', 'large tests can be run') 617 AddTargetGroup('run_large_tests', 'large tests can be run')
619 618
OLDNEW
« no previous file with comments | « plugin/build.scons ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698