diff options
author | sgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-04 07:24:51 +0000 |
---|---|---|
committer | sgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-04 07:24:51 +0000 |
commit | 347dd2b946fae0f44cfed97b9fa7cf456cd623a4 (patch) | |
tree | 9eddb3cf68702aa408a34a54289d6a4b993cf663 /net/net_main.scons | |
parent | 4119ac8f30cda71888d7ca437deafc4488cf9cf8 (diff) | |
download | chromium_src-347dd2b946fae0f44cfed97b9fa7cf456cd623a4.zip chromium_src-347dd2b946fae0f44cfed97b9fa7cf456cd623a4.tar.gz chromium_src-347dd2b946fae0f44cfed97b9fa7cf456cd623a4.tar.bz2 |
Move the main entry point *.scons files in the key remaining components
(net, webkit, chrome) to *_main.scons, so we can use GYP=1 on the command
line to switch between old and new while tracking down the remaining
inconsistencies.
Review URL: http://codereview.chromium.org/39080
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@10882 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/net_main.scons')
-rw-r--r-- | net/net_main.scons | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/net/net_main.scons b/net/net_main.scons new file mode 100644 index 0000000..4548b03 --- /dev/null +++ b/net/net_main.scons @@ -0,0 +1,29 @@ +# Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +__doc__ = """ +Master configuration for building net components. +""" + +Import('env') + +# Arrange for Hammer to add all programs to the 'net' Alias. +env.Append( + COMPONENT_PROGRAM_GROUPS = ['net'], + COMPONENT_TEST_PROGRAM_GROUPS = ['net'], +) + +sconscript_files = [ + 'crash_cache.scons', + 'dump_cache.scons', + 'net_lib.scons', + 'net_perftests.scons', + 'net_resources.scons', + 'net_sln.scons', + 'net_unittests.scons', + 'stress_cache.scons', + 'tools/tld_cleanup/tld_cleanup.scons', +] + +SConscript(sconscript_files, exports=['env']) |