Returns the executable name of the bundle represented by this target. E.g. Chromium.
(self)
| 488 | return target_prefix + target + target_ext |
| 489 | |
| 490 | def GetExecutableName(self): |
| 491 | """Returns the executable name of the bundle represented by this target. |
| 492 | E.g. Chromium.""" |
| 493 | if self._IsBundle(): |
| 494 | return self.spec.get("product_name", self.spec["target_name"]) |
| 495 | else: |
| 496 | return self._GetStandaloneBinaryPath() |
| 497 | |
| 498 | def GetExecutablePath(self): |
| 499 | """Returns the qualified path to the primary executable of the bundle |
no test coverage detected