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

Unified Diff: Source/core/core_derived_sources.gyp

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 | « Source/build/scripts/xxd.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/core_derived_sources.gyp
diff --git a/Source/core/core_derived_sources.gyp b/Source/core/core_derived_sources.gyp
index d3ee9ba3d954ce04b8866fa131d615f4daf7e0eb..0581c844dc31528b048bd66d87744d163a5cd960 100644
--- a/Source/core/core_derived_sources.gyp
+++ b/Source/core/core_derived_sources.gyp
@@ -110,15 +110,15 @@
'outputs': [
'<(SHARED_INTERMEDIATE_DIR)/blink/V8ArrayBufferViewCustomScript.h',
],
- 'msvs_cygwin_shell': 0,
'action': [
- '<(perl_exe)',
- '../build/scripts/xxd.pl',
+ 'python',
+ '../build/scripts/xxd.py',
'V8ArrayBufferViewCustomScript_js',
'<@(_inputs)',
'<@(_outputs)'
],
'message': 'Generating V8ArrayBufferViewCustomScript.h from V8ArrayBufferViewCustomScript.js',
+ 'msvs_cygwin_shell': 0,
},
{
'action_name': 'generateXMLViewerCSS',
@@ -128,14 +128,14 @@
'outputs': [
'<(SHARED_INTERMEDIATE_DIR)/blink/XMLViewerCSS.h',
],
- 'msvs_cygwin_shell': 0,
'action': [
- '<(perl_exe)',
- '../build/scripts/xxd.pl',
+ 'python',
+ '../build/scripts/xxd.py',
'XMLViewer_css',
'<@(_inputs)',
'<@(_outputs)'
],
+ 'msvs_cygwin_shell': 0,
},
{
'action_name': 'generateXMLViewerJS',
@@ -145,14 +145,14 @@
'outputs': [
'<(SHARED_INTERMEDIATE_DIR)/blink/XMLViewerJS.h',
],
- 'msvs_cygwin_shell': 0,
'action': [
- '<(perl_exe)',
- '../build/scripts/xxd.pl',
+ 'python',
+ '../build/scripts/xxd.py',
'XMLViewer_js',
'<@(_inputs)',
'<@(_outputs)'
],
+ 'msvs_cygwin_shell': 0,
},
{
'action_name': 'HTMLEntityTable',
« no previous file with comments | « Source/build/scripts/xxd.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698