MCPcopy Create free account
hub / github.com/nodejs/node / AllTargets

Function AllTargets

tools/gyp/pylib/gyp/common.py:318–322  ·  view source on GitHub ↗

Returns all targets (direct and dependencies) for the specified build_file.

(target_list, target_dicts, build_file)

Source from the content-addressed store, hash-verified

316
317
318def AllTargets(target_list, target_dicts, build_file):
319 """Returns all targets (direct and dependencies) for the specified build_file."""
320 bftargets = BuildFileTargets(target_list, build_file)
321 deptargets = DeepDependencyTargets(target_dicts, bftargets)
322 return bftargets + deptargets
323
324
325def WriteOnDiff(filename):

Callers

nothing calls this directly

Calls 2

BuildFileTargetsFunction · 0.85
DeepDependencyTargetsFunction · 0.85

Tested by

no test coverage detected