Returns the qualified path to the bundle's resource folder. E.g. Chromium.app/Contents/Resources. Only valid for bundles.
(self)
| 315 | return os.path.join(self.GetWrapperName(), "Contents") |
| 316 | |
| 317 | def GetBundleResourceFolder(self): |
| 318 | """Returns the qualified path to the bundle's resource folder. E.g. |
| 319 | Chromium.app/Contents/Resources. Only valid for bundles.""" |
| 320 | assert self._IsBundle() |
| 321 | if self.isIOS: |
| 322 | return self.GetBundleContentsFolderPath() |
| 323 | return os.path.join(self.GetBundleContentsFolderPath(), "Resources") |
| 324 | |
| 325 | def GetBundleExecutableFolderPath(self): |
| 326 | """Returns the qualified path to the bundle's executables folder. E.g. |
no test coverage detected