Returns a list of shell commands that contain the shell commands to run as postbuilds for this target, before the actual postbuilds.
(self, configname, output, output_binary, quiet=False)
| 1111 | return result |
| 1112 | |
| 1113 | def _GetTargetPostbuilds(self, configname, output, output_binary, quiet=False): |
| 1114 | """Returns a list of shell commands that contain the shell commands |
| 1115 | to run as postbuilds for this target, before the actual postbuilds.""" |
| 1116 | # dSYMs need to build before stripping happens. |
| 1117 | return self._GetDebugInfoPostbuilds( |
| 1118 | configname, output, output_binary, quiet |
| 1119 | ) + self._GetStripPostbuilds(configname, output_binary, quiet) |
| 1120 | |
| 1121 | def _GetIOSPostbuilds(self, configname, output_binary): |
| 1122 | """Return a shell command to codesign the iOS output binary so it can |
no test coverage detected