[email protected] | ea0b72b | 2012-03-02 22:48:56 | [diff] [blame] | 1 | # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
[email protected] | 094b70569 | 2010-12-17 03:46:15 | [diff] [blame] | 2 | # Use of this source code is governed by a BSD-style license that can be |
3 | # found in the LICENSE file. | ||||
4 | |||||
5 | # Use this sed script to reduce a Windows build log into something | ||||
6 | # machine-parsable. | ||||
7 | |||||
8 | # Drop uninformative lines. | ||||
[email protected] | fc38a00 | 2013-07-11 10:45:45 | [diff] [blame] | 9 | /The operation completed successfully\./d |
[email protected] | 094b70569 | 2010-12-17 03:46:15 | [diff] [blame] | 10 | |
11 | # Drop parallelization indicators on lines. | ||||
[email protected] | 2dff1170 | 2013-10-31 04:21:14 | [diff] [blame] | 12 | s/^[0-9]+>// |
[email protected] | ea0b72b | 2012-03-02 22:48:56 | [diff] [blame] | 13 | |
14 | # Shorten bindings generation lines | ||||
[email protected] | 2dff1170 | 2013-10-31 04:21:14 | [diff] [blame] | 15 | s/^.*"python".*idl_compiler\.py".*("[^"]+\.idl").*$/ idl_compiler \1/ |