Searched refs:v8_path (Results 1 – 6 of 6) sorted by relevance
/external/v8/tools/node/ |
D | fetch_deps.py | 45 def EnsureGit(v8_path): argument 49 "git " + args, cwd=v8_path, shell=True).strip() 51 expected_git_dir = os.path.join(v8_path, ".git") 63 def FetchDeps(v8_path): argument 65 v8_path = os.path.abspath(v8_path) 66 assert os.path.isdir(v8_path) 69 depot_tools = node_common.EnsureDepotTools(v8_path, True) 71 temporary_git = EnsureGit(v8_path) 80 cwd=os.path.join(v8_path, os.path.pardir), 86 node_common.UninitGit(v8_path) [all …]
|
D | node_common.py | 16 def EnsureDepotTools(v8_path, fetch_if_not_exist): argument 17 def _Get(v8_path): argument 18 depot_tools = os.path.join(v8_path, "_depot_tools") 37 depot_tools = _Get(v8_path) 42 def UninitGit(v8_path): argument 44 target = os.path.join(v8_path, ".git")
|
D | update_node.py | 81 cwd=options.v8_path, 85 source = os.path.join(options.v8_path, *repository) 141 cwd=options.v8_path).strip() 160 assert os.path.isdir(options.v8_path) 161 options.v8_path = os.path.abspath(options.v8_path) 169 RunGclient(options.v8_path)
|
D | backport_node.py | 51 stdout=subprocess.PIPE, cwd=options.v8_path) 78 cwd=options.v8_path).strip() 84 cwd=options.v8_path).strip() 107 options.v8_path = os.path.abspath(options.v8_path) 108 assert os.path.isdir(options.v8_path)
|
D | build_gn.py | 51 return os.path.join(options.v8_path, "buildtools", os_path, "gn") 78 depot_tools = node_common.EnsureDepotTools(options.v8_path, False) 122 options.v8_path = os.path.abspath(options.v8_path) 123 assert os.path.isdir(options.v8_path)
|
/external/v8/ |
D | merge.py | 27 new_files = [f for f in os.listdir(args.v8_path) if not f.startswith(".")] 39 all_new_v8 = os.path.join(args.v8_path, "*")
|