Returns the name of the bundle binary of by this target. E.g. Chromium.app/Contents/MacOS/Chromium. Only valid for bundles.
(self)
| 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: |
no test coverage detected