summaryrefslogtreecommitdiffstats
path: root/webkit/build/port
diff options
context:
space:
mode:
authorevanm@google.com <evanm@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-12-26 01:04:32 +0000
committerevanm@google.com <evanm@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-12-26 01:04:32 +0000
commite0ffbf143832b30116cbce8036e17909a19d6a8d (patch)
tree966db8b68b6f13865d34fa8ade306bf4444e36f2 /webkit/build/port
parent3c3c85474945bec57ca70eb884002de8944eea5f (diff)
downloadchromium_src-e0ffbf143832b30116cbce8036e17909a19d6a8d.zip
chromium_src-e0ffbf143832b30116cbce8036e17909a19d6a8d.tar.gz
chromium_src-e0ffbf143832b30116cbce8036e17909a19d6a8d.tar.bz2
Restore the shortened "building bindings" output after r6962 broke it.
Review URL: http://codereview.chromium.org/14107 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7469 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/build/port')
-rw-r--r--webkit/build/port/SConscript8
1 files changed, 7 insertions, 1 deletions
diff --git a/webkit/build/port/SConscript b/webkit/build/port/SConscript
index 1139533..489375b 100644
--- a/webkit/build/port/SConscript
+++ b/webkit/build/port/SConscript
@@ -85,8 +85,14 @@ env = env.Clone(
env.PrependENVPath('PATH', cygwin_posix)
-bindings_perl_modules = env.Glob('$BINDINGS_SCRIPTS_DIR/*.pm')
+# When we haven't specified --verbose (aka brief_comstr), make the
+# WebKit bindings building step output more brief to match the brief
+# compile/link/etc. lines.
+if env.GetOption('brief_comstr'):
+ env.SetDefault(BINDINGSCOMSTR='________Building bindings in $TARGET')
+
+bindings_perl_modules = env.Glob('$BINDINGS_SCRIPTS_DIR/*.pm')
def BindingsEmitter(target, source, env):
source.append('$BINDINGS_SCRIPT')