Searched refs:graph (Results 1 – 14 of 14) sorted by relevance
/build/make/tools/product_config/ |
D | inherit_tree.py | 11 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/ |
D | README.md | 1 # 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/ |
D | ninja_config.mk | 32 product-graph \
|
D | product-graph.mk | 36 this_makefile := build/make/core/product-graph.mk
|
D | product_config.mk | 138 ifneq (,$(filter product-graph, $(MAKECMDGOALS)))
|
D | config.mk | 1155 product-graph dump-products
|
D | Makefile | 6050 include $(BUILD_SYSTEM)/product-graph.mk
|
/build/make/ |
D | README.md | 20 graph of the two systems can be combined and run as one.
|
/build/make/tools/releasetools/ |
D | pylintrc | 342 # 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/ |
D | perf.md | 48 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.
|
D | best_practices.md | 42 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/ |
D | concepts.md | 18 |Ninja|Serialized command line action graph executor. Executes Ninja graph generated from Kati and …
|
/build/bazel/rules_cc/examples/ |
D | experimental_cc_shared_library.bzl | 26 "Nodes in the graph of shared libraries.",
|
/build/soong/makedeps/ |
D | deps_test.go | 301 external/ninja/src/graph.h external/ninja/src/eval_env.h \
|