Returns the directory name of the bundle represented by this target. Only valid for bundles.
(self)
| 295 | return self._GetStandaloneBinaryPath() |
| 296 | |
| 297 | def GetWrapperName(self): |
| 298 | """Returns the directory name of the bundle represented by this target. |
| 299 | Only valid for bundles.""" |
| 300 | assert self._IsBundle() |
| 301 | return self.GetProductName() + self.GetWrapperExtension() |
| 302 | |
| 303 | def GetBundleContentsFolderPath(self): |
| 304 | """Returns the qualified path to the bundle's contents folder. E.g. |
no test coverage detected