MCPcopy Index your code
hub / github.com/nodejs/node / _GetBundleBinaryPath

Method _GetBundleBinaryPath

tools/gyp/pylib/gyp/xcode_emulation.py:439–445  ·  view source on GitHub ↗

Returns the name of the bundle binary of by this target. E.g. Chromium.app/Contents/MacOS/Chromium. Only valid for bundles.

(self)

Source from the content-addressed store, hash-verified

437 }[self.spec["type"]]
438
439 def _GetBundleBinaryPath(self):
440 """Returns the name of the bundle binary of by this target.
441 E.g. Chromium.app/Contents/MacOS/Chromium. Only valid for bundles."""
442 assert self._IsBundle()
443 return os.path.join(
444 self.GetBundleExecutableFolderPath(), self.GetExecutableName()
445 )
446
447 def _GetStandaloneExecutableSuffix(self):
448 if "product_extension" in self.spec:

Callers 1

GetExecutablePathMethod · 0.95

Calls 4

_IsBundleMethod · 0.95
GetExecutableNameMethod · 0.95
joinMethod · 0.45

Tested by

no test coverage detected