summaryrefslogtreecommitdiffstats
path: root/webkit/webkit.scons
diff options
context:
space:
mode:
authorsgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-11-14 23:29:55 +0000
committersgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-11-14 23:29:55 +0000
commit1796a623c98ac36e9c6f7954e4cc25dab39551b9 (patch)
tree1cb96cf86ae54651e2081e20c379d5b216477d3f /webkit/webkit.scons
parentba990126c119b5df777b9afcdc3d216cb9f21e5b (diff)
downloadchromium_src-1796a623c98ac36e9c6f7954e4cc25dab39551b9.zip
chromium_src-1796a623c98ac36e9c6f7954e4cc25dab39551b9.tar.gz
chromium_src-1796a623c98ac36e9c6f7954e4cc25dab39551b9.tar.bz2
Add a webkit.scons file in between build\SConscript.main and
webkit\SConscript, as a place for calling renamed *.scons files. Add 'webkit' and 'chrome' COMPONENT_PROGRAM_GROUPS and COMPONENT_TEST_PROGRAM_GROUPS so the generated .exe files get copied correctly into the Hammer\ build subdirectory. Review URL: http://codereview.chromium.org/10768 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@5518 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/webkit.scons')
-rw-r--r--webkit/webkit.scons21
1 files changed, 21 insertions, 0 deletions
diff --git a/webkit/webkit.scons b/webkit/webkit.scons
new file mode 100644
index 0000000..8c10e9b
--- /dev/null
+++ b/webkit/webkit.scons
@@ -0,0 +1,21 @@
+# 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',
+]
+
+SConscript(sconscript_files, exports=['env'])