Home
last modified time | relevance | path

Searched refs:graph (Results 1 – 14 of 14) sorted by relevance

/build/make/tools/product_config/
Dinherit_tree.py11 def PrintNodes(graph, node, prefix): argument
13 children = graph.get(node, [])
16 for child in sorted(graph.get(node, [])):
17 PrintNodes(graph, child, prefix + " ")
28 graph = {}
40 graph.setdefault(line[1], list()).append(line[2])
42 PrintNodes(graph, root, "")
/build/bazel/json_module_graph/
DREADME.md1 # JSON module graph queries
3 This directory contains `jq` scripts that query Soong's module graph.
5 It uses the JSON module graph that Soongs dumps when the
25 in the module graph within the transitive closure of given module
31 It's best to filter the full module graph to the part you are interested in
32 because `jq` isn't too fast on the full graph.
/build/make/core/
Dninja_config.mk32 product-graph \
Dproduct-graph.mk36 this_makefile := build/make/core/product-graph.mk
Dproduct_config.mk138 ifneq (,$(filter product-graph, $(MAKECMDGOALS)))
Dconfig.mk1155 product-graph dump-products
DMakefile6050 include $(BUILD_SYSTEM)/product-graph.mk
/build/make/
DREADME.md20 graph of the two systems can be combined and run as one.
/build/make/tools/releasetools/
Dpylintrc342 # Create a graph of every (i.e. internal and external) dependencies in the
344 import-graph=
346 # Create a graph of external dependencies in the given file (report RP0402 must
348 ext-import-graph=
350 # Create a graph of internal dependencies in the given file (report RP0402 must
352 int-import-graph=
/build/soong/docs/
Dperf.md48 in the build graph will improve total build times.
220 You'll likely need to cross-reference this data against the build graph in the
245 Soong always loads the entire module graph, so as modules convert from Make to
247 does slow down builds, as we need to verify/produce/load a larger build graph.
Dbest_practices.md42 enforce this in the future. Encode these as build rules in the build graph
109 If writing multiple files from a tool, declare them all in the build graph.
135 generate the entire build graph before reading source files, or running your
/build/bazel/docs/
Dconcepts.md18 |Ninja|Serialized command line action graph executor. Executes Ninja graph generated from Kati and …
/build/bazel/rules_cc/examples/
Dexperimental_cc_shared_library.bzl26 "Nodes in the graph of shared libraries.",
/build/soong/makedeps/
Ddeps_test.go301 external/ninja/src/graph.h external/ninja/src/eval_env.h \