(self)
| 232 | return self.spec["type"] == "shared_library" and self._IsBundle() and self.isIOS |
| 233 | |
| 234 | def _IsBundle(self): |
| 235 | return ( |
| 236 | int(self.spec.get("mac_bundle", 0)) != 0 |
| 237 | or self._IsXCTest() |
| 238 | or self._IsXCUiTest() |
| 239 | ) |
| 240 | |
| 241 | def _IsXCTest(self): |
| 242 | return int(self.spec.get("mac_xctest_bundle", 0)) != 0 |
no test coverage detected