diff options
author | evanm@google.com <evanm@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-24 15:38:23 +0000 |
---|---|---|
committer | evanm@google.com <evanm@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-24 15:38:23 +0000 |
commit | 4c25bc4d870be25f0e4f306f1aa95c86634be34c (patch) | |
tree | 9929b19a64b61dd85ffa66a38575faa14fb9668a | |
parent | ed0d01ba72f8850887e0f27bc21e7ca250e31d9e (diff) | |
download | chromium_src-4c25bc4d870be25f0e4f306f1aa95c86634be34c.zip chromium_src-4c25bc4d870be25f0e4f306f1aa95c86634be34c.tar.gz chromium_src-4c25bc4d870be25f0e4f306f1aa95c86634be34c.tar.bz2 |
Allow BINDINGSCOMSTR to show prettier output while generating WebKit bindings.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1290 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | build/SConscript.main | 1 | ||||
-rw-r--r-- | webkit/build/port/SConscript | 12 |
2 files changed, 7 insertions, 6 deletions
diff --git a/build/SConscript.main b/build/SConscript.main index 8de0647..18183b7 100644 --- a/build/SConscript.main +++ b/build/SConscript.main @@ -376,6 +376,7 @@ if ARGUMENTS.get('VERBOSE') in (None, '0'): env['CXXCOMSTR'] = 'Compiling $TARGET ...' env['ARCOMSTR'] = 'Archiving $TARGET ...' env['LINKCOMSTR'] = 'Linking $TARGET ...' + env['BINDINGSCOMSTR'] = 'Building bindings in $TARGET ...' # Place the .sconsign.dblite in the build directory. diff --git a/webkit/build/port/SConscript b/webkit/build/port/SConscript index 6c1f499..be8eebf 100644 --- a/webkit/build/port/SConscript +++ b/webkit/build/port/SConscript @@ -114,14 +114,14 @@ def BindingsEmitter(target, source, env): env.Depends(new_h, bindings_perl_modules) return new_target, source - env.Append( - BUILDERS = {'Bindings' : Builder(action = '$BINDINGSCOM', - src_suffix = '.idl', - emitter = BindingsEmitter, - ), - }, + BUILDERS = {'Bindings': Builder( + action = Action('$BINDINGSCOM', '$BINDINGSCOMSTR'), + src_suffix = '.idl', + emitter = BindingsEmitter, + )}, ) + env.Replace( # TODO(bradnelson): don't have the path change here!!! # TODO(bradnelson): fix ugly hack with one include! |