summaryrefslogtreecommitdiffstats
path: root/webkit/webkit_main.scons
diff options
context:
space:
mode:
authorsgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-03-04 07:24:51 +0000
committersgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-03-04 07:24:51 +0000
commit347dd2b946fae0f44cfed97b9fa7cf456cd623a4 (patch)
tree9eddb3cf68702aa408a34a54289d6a4b993cf663 /webkit/webkit_main.scons
parent4119ac8f30cda71888d7ca437deafc4488cf9cf8 (diff)
downloadchromium_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 'webkit/webkit_main.scons')
-rw-r--r--webkit/webkit_main.scons22
1 files changed, 22 insertions, 0 deletions
diff --git a/webkit/webkit_main.scons b/webkit/webkit_main.scons
new file mode 100644
index 0000000..605dbfc
--- /dev/null
+++ b/webkit/webkit_main.scons
@@ -0,0 +1,22 @@
+# 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 webkit components.
+"""
+
+Import('env')
+
+# Arrange for Hammer to add all programs to the 'webkit' Alias.
+env.Append(
+ COMPONENT_PROGRAM_GROUPS = ['webkit'],
+ COMPONENT_TEST_PROGRAM_GROUPS = ['webkit'],
+)
+
+sconscript_files = [
+ 'SConscript',
+ 'webkit_sln.scons',
+]
+
+SConscript(sconscript_files, exports=['env'])