Lines Matching refs:deps
35 const std::vector<const Target*>& deps = target->deps();
36 for (size_t i = 0; i < deps.size(); i++)
37 RecursiveCollectDeps(deps[i], result);
48 std::vector<const Target*> sorted_deps = target->deps();
74 // Collect the deps to display.
75 std::vector<Label> deps;
84 deps.push_back(*i);
91 const std::vector<const Target*>& target_deps = target->deps();
93 deps.push_back(target_deps[i]->label());
97 deps.push_back(target_datadeps[i]->label());
100 std::sort(deps.begin(), deps.end());
101 for (size_t i = 0; i < deps.size(); i++)
102 OutputString(" " + deps[i].GetUserVisibleName(toolchain_label) + "\n");
238 " deps [--all | --tree]\n"
242 " Both \"deps\" and \"datadeps\" will be included.\n"
268 " gn desc :base_unittests deps --tree\n"
298 } else if (what == "deps") {