Returns the qualified path to the primary executable of the bundle represented by this target. E.g. Chromium.app/Contents/MacOS/Chromium.
(self)
| 496 | return self._GetStandaloneBinaryPath() |
| 497 | |
| 498 | def GetExecutablePath(self): |
| 499 | """Returns the qualified path to the primary executable of the bundle |
| 500 | represented by this target. E.g. Chromium.app/Contents/MacOS/Chromium.""" |
| 501 | if self._IsBundle(): |
| 502 | return self._GetBundleBinaryPath() |
| 503 | else: |
| 504 | return self._GetStandaloneBinaryPath() |
| 505 | |
| 506 | def GetActiveArchs(self, configname): |
| 507 | """Returns the architectures this target should be built for.""" |
no test coverage detected