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

Method AddImplicitPostbuilds

tools/gyp/pylib/gyp/xcode_emulation.py:1236–1244  ·  view source on GitHub ↗

Returns a list of shell commands that should run before and after |postbuilds|.

(
        self, configname, output, output_binary, postbuilds=[], quiet=False
    )

Source from the content-addressed store, hash-verified

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"):

Callers 2

WriteTargetMethod · 0.80
GetPostbuildCommandMethod · 0.80

Calls 2

_GetTargetPostbuildsMethod · 0.95
_GetIOSPostbuildsMethod · 0.95

Tested by

no test coverage detected