Returns a list of shell commands that should run before and after |postbuilds|.
(
self, configname, output, output_binary, postbuilds=[], quiet=False
)
| 1234 | return XcodeSettings._codesigning_key_cache.get(identity, "") |
| 1235 | |
| 1236 | def AddImplicitPostbuilds( |
| 1237 | self, configname, output, output_binary, postbuilds=[], quiet=False |
| 1238 | ): |
| 1239 | """Returns a list of shell commands that should run before and after |
| 1240 | |postbuilds|.""" |
| 1241 | assert output_binary is not None |
| 1242 | pre = self._GetTargetPostbuilds(configname, output, output_binary, quiet) |
| 1243 | post = self._GetIOSPostbuilds(configname, output_binary) |
| 1244 | return pre + postbuilds + post |
| 1245 | |
| 1246 | def _AdjustLibrary(self, library, config_name=None): |
| 1247 | if library.endswith(".framework"): |
no test coverage detected