Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(479)

Unified Diff: tools/gn/item_node.cc

Issue 21114002: Add initial prototype for the GN meta-buildsystem. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add owners and readme Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/gn/item_node.h ('k') | tools/gn/item_tree.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/gn/item_node.cc
diff --git a/tools/gn/item_node.cc b/tools/gn/item_node.cc
new file mode 100644
index 0000000000000000000000000000000000000000..776a126b19036b73cd32651aa44c34357832b872
--- /dev/null
+++ b/tools/gn/item_node.cc
@@ -0,0 +1,51 @@
+// Copyright (c) 2013 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "tools/gn/item_node.h"
+
+#include <algorithm>
+
+#include "base/callback.h"
+#include "base/logging.h"
+#include "tools/gn/item.h"
+
+ItemNode::ItemNode(Item* i)
+ : state_(REFERENCED),
+ item_(i) {
+}
+
+ItemNode::~ItemNode() {
+}
+
+void ItemNode::AddDependency(ItemNode* node) {
+ if (direct_dependencies_.find(node) != direct_dependencies_.end())
+ return; // Already have this dep.
+ direct_dependencies_.insert(node);
+
+ if (node->state() != RESOLVED) {
+ // Wire up the pending resolution info.
+ unresolved_dependencies_.insert(node);
+ node->waiting_on_resolution_.insert(this);
+ }
+}
+
+void ItemNode::MarkDirectDependencyResolved(ItemNode* node) {
+ DCHECK(unresolved_dependencies_.find(node) != unresolved_dependencies_.end());
+ unresolved_dependencies_.erase(node);
+}
+
+void ItemNode::SwapOutWaitingDependencySet(ItemNodeSet* out_set) {
+ waiting_on_resolution_.swap(*out_set);
+}
+
+void ItemNode::SetGenerated() {
+ state_ = GENERATED;
+}
+
+void ItemNode::SetResolved() {
+ state_ = RESOLVED;
+
+ if (!resolved_closure_.is_null())
+ resolved_closure_.Run();
+}
« no previous file with comments | « tools/gn/item_node.h ('k') | tools/gn/item_tree.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698