Skip to content

Commit

Permalink
build: use '<(python)' instead of 'python'
Browse files Browse the repository at this point in the history
PR-URL: #41146
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
  • Loading branch information
zcbenz authored and danielleadams committed Dec 16, 2021
1 parent f530229 commit c658881
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions src/inspector/node_inspector.gypi
Expand Up @@ -84,7 +84,7 @@
'<(SHARED_INTERMEDIATE_DIR)/src/node_protocol.json',
],
'action': [
'python',
'<(python)',
'tools/inspector_protocol/convert_protocol_to_json.py',
'<@(_inputs)',
'<@(_outputs)',
Expand All @@ -102,7 +102,7 @@
],
'process_outputs_as_sources': 1,
'action': [
'python',
'<(python)',
'tools/inspector_protocol/code_generator.py',
'--jinja_dir', '<@(protocol_tool_path)',
'--output_base', '<(SHARED_INTERMEDIATE_DIR)/src/',
Expand All @@ -120,7 +120,7 @@
'<(SHARED_INTERMEDIATE_DIR)/concatenated_protocol.json',
],
'action': [
'python',
'<(python)',
'tools/inspector_protocol/concatenate_protocols.py',
'<@(_inputs)',
'<@(_outputs)',
Expand All @@ -136,7 +136,7 @@
],
'process_outputs_as_sources': 1,
'action': [
'python',
'<(python)',
'tools/compress_json.py',
'<@(_inputs)',
'<@(_outputs)',
Expand Down
4 changes: 2 additions & 2 deletions tools/v8_gypfiles/inspector.gypi
Expand Up @@ -142,7 +142,7 @@
'<@(inspector_generated_output_root)/src/js_protocol.stamp',
],
'action': [
'python',
'<(python)',
'<(inspector_protocol_path)/check_protocol_compatibility.py',
'--stamp', '<@(_outputs)',
'<@(_inputs)',
Expand All @@ -161,7 +161,7 @@
],
'process_outputs_as_sources': 1,
'action': [
'python',
'<(python)',
'<(inspector_protocol_path)/code_generator.py',
'--jinja_dir', '<(V8_ROOT)/third_party',
'--output_base', '<(inspector_generated_output_root)/src/inspector',
Expand Down

0 comments on commit c658881

Please sign in to comment.