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

Unified Diff: trunk/src/tools/gn/config_values_generator.h

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/config_values_extractors.cc ('k') | trunk/src/tools/gn/config_values_generator.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: trunk/src/tools/gn/config_values_generator.h
===================================================================
--- trunk/src/tools/gn/config_values_generator.h (revision 214322)
+++ trunk/src/tools/gn/config_values_generator.h (working copy)
@@ -1,48 +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.
-
-#ifndef TOOLS_GN_CONFIG_VALUES_GENERATOR_H_
-#define TOOLS_GN_CONFIG_VALUES_GENERATOR_H_
-
-#include <string>
-#include <vector>
-
-#include "base/basictypes.h"
-#include "tools/gn/source_dir.h"
-
-class ConfigValues;
-class Err;
-class Scope;
-class Token;
-
-class ConfigValuesGenerator {
- public:
- ConfigValuesGenerator(ConfigValues* dest_values,
- const Scope* scope,
- const Token& function_token,
- const SourceDir& input_dir,
- Err* err);
- ~ConfigValuesGenerator();
-
- // Sets the error passed to the constructor on failure.
- void Run();
-
- private:
- void FillDefines();
- void FillIncludes();
- void FillCflags();
- void FillCflags_C();
- void FillCflags_CC();
- void FillLdflags();
-
- ConfigValues* config_values_;
- const Scope* scope_;
- const Token& function_token_;
- const SourceDir input_dir_;
- Err* err_;
-
- DISALLOW_COPY_AND_ASSIGN(ConfigValuesGenerator);
-};
-
-#endif // TOOLS_GN_CONFIG_VALUES_GENERATOR_H_
« no previous file with comments | « trunk/src/tools/gn/config_values_extractors.cc ('k') | trunk/src/tools/gn/config_values_generator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698