Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(128)

Side by Side Diff: build/sanitize-win-build-log.sed

Issue 17215002: Update IDL compiler lines in sanitize-win-build-log.sed (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Update to final script names Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/bin/echo Use sanitize-win-build-log.sh or sed -f 1 #!/bin/echo Use sanitize-win-build-log.sh or sed -f
2 2
3 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 3 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
4 # Use of this source code is governed by a BSD-style license that can be 4 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file. 5 # found in the LICENSE file.
6 6
7 # Use this sed script to reduce a Windows build log into something 7 # Use this sed script to reduce a Windows build log into something
8 # machine-parsable. 8 # machine-parsable.
9 9
10 # Drop uninformative lines. 10 # Drop uninformative lines.
11 /The operation completed successfully./d 11 /The operation completed successfully./d
12 12
13 # Drop parallelization indicators on lines. 13 # Drop parallelization indicators on lines.
14 s/^[0-9]\+>// 14 s/^[0-9]\+>//
15 15
16 # Shorten bindings generation lines 16 # Shorten bindings generation lines
17 s/^.*"perl".*generate-bindings.pl".*\("[^"]\+\.idl"\).*$/ generate-bindings \1/ 17 s/^.*"perl".*deprecated_generate_bindings\.pl".*\("[^"]\+\.idl"\).*$/ deprecate d_generate_bindings \1/
18 s/^.*"perl".*idl_compiler\.py".*\("[^"]\+\.idl"\).*$/ idl_compiler \1/
haraken 2013/07/11 02:42:55 perl => python
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698