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

Unified Diff: trunk/src/tools/gn/item_node.cc

Issue 21084010: Revert 214254 "Add initial prototype for the GN meta-buildsystem." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: 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 | « trunk/src/tools/gn/item_node.h ('k') | trunk/src/tools/gn/item_tree.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: trunk/src/tools/gn/item_node.cc
===================================================================
--- trunk/src/tools/gn/item_node.cc (revision 214322)
+++ trunk/src/tools/gn/item_node.cc (working copy)
@@ -1,51 +0,0 @@
-// 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 | « trunk/src/tools/gn/item_node.h ('k') | trunk/src/tools/gn/item_tree.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698