MCPcopy Index your code
hub / github.com/nodejs/node / _GetTargetPostbuilds

Method _GetTargetPostbuilds

tools/gyp/pylib/gyp/xcode_emulation.py:1113–1119  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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

Callers 1

AddImplicitPostbuildsMethod · 0.95

Calls 2

_GetStripPostbuildsMethod · 0.95

Tested by

no test coverage detected