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

Side by Side Diff: Source/build/scripts/preprocessor.pm

Issue 26414004: Move core/scripts to build/scripts so that platform can use them. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 2 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
OLDNEW
1 # 1 #
2 # Copyright (C) 2005 Nikolas Zimmermann <wildfox@kde.org> 2 # Copyright (C) 2005 Nikolas Zimmermann <wildfox@kde.org>
3 # Copyright (C) 2011 Google Inc. 3 # Copyright (C) 2011 Google Inc.
4 # 4 #
5 # This library is free software; you can redistribute it and/or 5 # This library is free software; you can redistribute it and/or
6 # modify it under the terms of the GNU Library General Public 6 # modify it under the terms of the GNU Library General Public
7 # License as published by the Free Software Foundation; either 7 # License as published by the Free Software Foundation; either
8 # version 2 of the License, or (at your option) any later version. 8 # version 2 of the License, or (at your option) any later version.
9 # 9 #
10 # This library is distributed in the hope that it will be useful, 10 # This library is distributed in the hope that it will be useful,
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 $pid = open2(\*PP_OUT, \*PP_IN, split(' ', $preprocessor), @args, @macro s, $fileName); 80 $pid = open2(\*PP_OUT, \*PP_IN, split(' ', $preprocessor), @args, @macro s, $fileName);
81 } 81 }
82 close PP_IN; 82 close PP_IN;
83 my @documentContent = <PP_OUT>; 83 my @documentContent = <PP_OUT>;
84 close PP_OUT; 84 close PP_OUT;
85 waitpid($pid, 0); 85 waitpid($pid, 0);
86 return @documentContent; 86 return @documentContent;
87 } 87 }
88 88
89 1; 89 1;
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698