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

Unified Diff: Source/build/ConvertFileToHeaderWithCharacterArray.gypi

Issue 42793005: Port xxd.pl to xxd.py (Perl to Python) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Python 2.6 (not 2.7): {} => {0} 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | Source/build/scripts/xxd.pl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/build/ConvertFileToHeaderWithCharacterArray.gypi
diff --git a/Source/build/ConvertFileToHeaderWithCharacterArray.gypi b/Source/build/ConvertFileToHeaderWithCharacterArray.gypi
index cfcb91b7294b691a3b9ebc8a09573be7adff397f..1a574b268f5e0aa60418c621dc68e1eebf7e3647 100644
--- a/Source/build/ConvertFileToHeaderWithCharacterArray.gypi
+++ b/Source/build/ConvertFileToHeaderWithCharacterArray.gypi
@@ -43,18 +43,19 @@
{
'action_name': 'ConvertFileToHeaderWithCharacterArray',
'inputs': [
- '../build/scripts/xxd.pl',
+ '../build/scripts/xxd.py',
'<(input_file_path)',
],
'outputs': [ '<@(output_file_path)', ],
'action': [
- '<(perl_exe)',
- '../build/scripts/xxd.pl',
+ 'python',
+ '../build/scripts/xxd.py',
'<(character_array_name)',
'<(input_file_path)',
'<@(_outputs)'
],
'message': 'Generating <(output_file_path) from <(input_file_path)',
+ 'msvs_cygwin_shell': 0,
},
],
« no previous file with comments | « no previous file | Source/build/scripts/xxd.pl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698