Home
last modified time | relevance | path

Searched refs:install_path (Results 1 – 5 of 5) sorted by relevance

/third_party/node/tools/
Dinstall.py14 install_path = '' # base target directory (DESTDIR + PREFIX from Makefile) variable
46 while path.startswith(install_path):
57 target_path = abspath(install_path, dst, os.path.basename(path))
59 target_path = abspath(install_path, dst)
88 if os.path.islink(abspath(install_path, target_path)): return
100 link_path = abspath(install_path, 'bin/' + bin_name)
127 link_path = abspath(install_path, 'bin/node-gyp')
167 abspath(install_path, 'lib/' + output_lib) + ' ' +
168 abspath(install_path, 'lib/libnode.x') + ' libnode.so')
175 link_path = abspath(install_path, 'lib/libnode.so')
[all …]
/third_party/skia/third_party/externals/freetype/tests/scripts/
Ddownload-test-fonts.py183 install_path: str,
189 and os.path.exists(install_path):
190 with open(install_path, "rb") as f:
196 install_file(content, install_path)
221 install_path = os.path.join(install_dir, install_name)
228 install_path, hex_digest, force_download, get_content
/third_party/node/tools/gyp/pylib/gyp/generator/
Dmake.py861 install_path = self._InstallableTargetInstallPath()
864 install_path = self.output
947 target_outputs[qualified_target] = install_path
1973 install_path = self._InstallableTargetInstallPath()
1983 assert install_path == self.output, "{} != {}".format(
1984 install_path,
1990 [self.target], [install_path], comment="Add target alias", phony=True
1992 if install_path != self.output:
1995 [install_path],
2002 installable_deps.append(install_path)
[all …]
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/
Dmake.py873 install_path = self._InstallableTargetInstallPath()
876 install_path = self.output
959 target_outputs[qualified_target] = install_path
1985 install_path = self._InstallableTargetInstallPath()
1995 assert install_path == self.output, "{} != {}".format(
1996 install_path,
2002 [self.target], [install_path], comment="Add target alias", phony=True
2004 if install_path != self.output:
2007 [install_path],
2014 installable_deps.append(install_path)
[all …]
/third_party/python/Lib/distutils/command/
Dbdist_msi.py342 install_path = r"SOFTWARE\Python\PythonCore\%s\InstallPath" % ver
358 [(machine_reg, 2, install_path, None, Type),
359 (user_reg, 1, install_path, None, Type)])