Lines Matching refs:deps
146 /// Open the deps log: load it, then open for writing.
175 // and in the deps log, it will have a Node object in state_. (It will also
176 // have an in edge if one of its inputs is another output that's in the deps
177 // log, but having a deps edge product an output that's input to another deps
179 // the deps log, and then a second recompaction will clear the build log,
210 /// Run after loading the build/deps logs.
566 DepsLog::Deps* deps = deps_log_.GetDeps(*it);
567 if (!deps) {
568 printf("%s: deps not found\n", (*it)->path().c_str());
576 printf("%s: #deps %d, deps mtime %" PRId64 " (%s)\n",
577 (*it)->path().c_str(), deps->node_count, deps->mtime,
578 (!mtime || mtime > deps->mtime ? "STALE":"VALID"));
579 for (int i = 0; i < deps->node_count; ++i)
580 printf(" %s\n", deps->nodes[i]->path().c_str());
1122 { "deps", "show dependencies stored in the deps log",
1124 { "missingdeps", "check deps log dependencies on generated files",
1297 /// Open the deps log: load it, then open for writing.
1307 Error("loading deps log %s: %s", path.c_str(), err.c_str());
1328 Error("opening deps log: %s", err.c_str());