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

Side by Side Diff: third_party/node/run_node.py

Issue 2533153002: DO NOT SUBMIT, call node from GN.
Patch Set: Run different scripts with nodejs() Created 4 years 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
« no previous file with comments | « third_party/node/run_node.gni ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 import os
2 import subprocess
3 import sys
4
5 _HERE_PATH = os.path.join(os.path.dirname(__file__))
6 _NODE_BINARY_NAME = "node-v6.9.1-linux-x64/bin/node"
7
8 subprocess.call([os.path.join(_HERE_PATH, _NODE_BINARY_NAME)] + sys.argv[1:])
OLDNEW
« no previous file with comments | « third_party/node/run_node.gni ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698