diff options
author | nbarth@chromium.org <nbarth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-11 10:45:45 +0000 |
---|---|---|
committer | nbarth@chromium.org <nbarth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-11 10:45:45 +0000 |
commit | fc38a0027c65756ea4474d5d990d31e306af8d3f (patch) | |
tree | cb15cf5292b0145551a1892072990fa572333f2e /build | |
parent | 1b0c379fa8b3da635fa35e3af1c078178460e935 (diff) | |
download | chromium_src-fc38a0027c65756ea4474d5d990d31e306af8d3f.zip chromium_src-fc38a0027c65756ea4474d5d990d31e306af8d3f.tar.gz chromium_src-fc38a0027c65756ea4474d5d990d31e306af8d3f.tar.bz2 |
We're adding a new idl_compiler.py script and
renaming the existing generate-bindings.pl,
as part of adding a second IDL compile flow so we can compile
with either Python or Perl.
We thus need to update this sed script to process the new command lines.
(Separate CL b/c build in Blink and this is in Chromium.)
Ok to commit, now that the build CL has landed:
Issue 18190004: Add Python flow to bindings generation, move dummy-generating IDL files over
https://codereview.chromium.org/18190004/
BUG=239771
Review URL: https://chromiumcodereview.appspot.com/17215002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@211057 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rwxr-xr-x | build/sanitize-win-build-log.sed | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/build/sanitize-win-build-log.sed b/build/sanitize-win-build-log.sed index c8bffde..ce51654 100755 --- a/build/sanitize-win-build-log.sed +++ b/build/sanitize-win-build-log.sed @@ -8,10 +8,11 @@ # machine-parsable. # Drop uninformative lines. -/The operation completed successfully./d +/The operation completed successfully\./d # Drop parallelization indicators on lines. s/^[0-9]\+>// # Shorten bindings generation lines -s/^.*"perl".*generate-bindings.pl".*\("[^"]\+\.idl"\).*$/ generate-bindings \1/ +s/^.*"\(perl\|[^"]\+perl\.exe\)".*deprecated_generate_bindings\.pl".*\("[^"]\+\.idl"\).*$/ deprecated_generate_bindings \2/ +s/^.*"python".*idl_compiler\.py".*\("[^"]\+\.idl"\).*$/ idl_compiler \1/ |