diff options
author | scottbyer@chromium.org <scottbyer@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-02 22:48:56 +0000 |
---|---|---|
committer | scottbyer@chromium.org <scottbyer@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-02 22:48:56 +0000 |
commit | ea0b72bc5bba3ba3829ae849a201f320e99dcd5f (patch) | |
tree | b80f5525bf4e29f2d3857022f600b71d1b850dd1 /build/sanitize-win-build-log.sed | |
parent | 2704c293dd024139ba0dca26f95cc6bcbff4becc (diff) | |
download | chromium_src-ea0b72bc5bba3ba3829ae849a201f320e99dcd5f.zip chromium_src-ea0b72bc5bba3ba3829ae849a201f320e99dcd5f.tar.gz chromium_src-ea0b72bc5bba3ba3829ae849a201f320e99dcd5f.tar.bz2 |
shorten long bindings lines for Windows builds
BUG=none
TEST=build using the command line on Windows, piping through sed, see less extraneous output
Review URL: http://codereview.chromium.org/9423018
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124754 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build/sanitize-win-build-log.sed')
-rw-r--r-- | build/sanitize-win-build-log.sed | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/build/sanitize-win-build-log.sed b/build/sanitize-win-build-log.sed index d6d049c..c8bffde 100644 --- a/build/sanitize-win-build-log.sed +++ b/build/sanitize-win-build-log.sed @@ -1,6 +1,6 @@ #!/bin/echo Use sanitize-win-build-log.sh or sed -f -# Copyright (c) 2010 The Chromium Authors. All rights reserved. +# Copyright (c) 2012 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. @@ -12,3 +12,6 @@ # Drop parallelization indicators on lines. s/^[0-9]\+>// + +# Shorten bindings generation lines +s/^.*"perl".*generate-bindings.pl".*\("[^"]\+\.idl"\).*$/ generate-bindings \1/ |