diff options
author | sgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-05 19:48:25 +0000 |
---|---|---|
committer | sgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-05 19:48:25 +0000 |
commit | 2516153bbd24a2d630fe04176c8d3190744e6246 (patch) | |
tree | ca3c928b9266d80a19aaab8c57cd5a5cc4c1b049 /build/SConscript.main | |
parent | 89ac46c97e6a3b2f2726bd11d52824d27ee26a24 (diff) | |
download | chromium_src-2516153bbd24a2d630fe04176c8d3190744e6246.zip chromium_src-2516153bbd24a2d630fe04176c8d3190744e6246.tar.gz chromium_src-2516153bbd24a2d630fe04176c8d3190744e6246.tar.bz2 |
Make better (and more efficient) use of Hammer functionality
in base, net and sandbox:
* Remove by-hand Install() and Alias() calls.
* Set $COMPONENT_PROGRAM_GROUPS and $COMPONENT_TEST_PROGRAM_GROUPS
(with in each foo\foo.scons file) so executables get added
automatically to the appropriate Alias.
* Set $TESTS_DIR and $STAGING_DIR so executables get linked
directly in their final resting place ($TARGET_ROOT).
Review URL: http://codereview.chromium.org/9188
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@4805 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build/SConscript.main')
-rw-r--r-- | build/SConscript.main | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/build/SConscript.main b/build/SConscript.main index 5618396..49cd36a 100644 --- a/build/SConscript.main +++ b/build/SConscript.main @@ -28,12 +28,25 @@ else: root_env = Environment( tools = ['component_setup'], + CHROME_SRC_DIR = '$MAIN_DIR/..', DESTINATION_ROOT = '$MAIN_DIR/Hammer', TARGET_ROOT = '$DESTINATION_ROOT', + # Where ComponentTestProgram() will build test executables. + TESTS_DIR = '$TARGET_ROOT', + + # Where ComponentProgram() will build program executables. + STAGING_DIR = '$TARGET_ROOT', + + # Where ComponentLibrary() will build libraries. LIBS_DIR = '$COMPONENT_LIBRARY_DIR', + # TODO(hammer): when Hammer supports this... + # Have Hammer prefix all Library aliases with lib_ (to avoid + # collisions with the component names themselves). + #COMPONENT_LIBRARY_ALIAS = 'lib_$LIBNAME', + # Disable running of tests thru scons for now. COMPONENT_TEST_CMDLINE = '', |