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

Side by Side Diff: tools/gn/config_values_generator.h

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, 4 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « tools/gn/config_values_extractors.cc ('k') | tools/gn/config_values_generator.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef TOOLS_GN_CONFIG_VALUES_GENERATOR_H_
6 #define TOOLS_GN_CONFIG_VALUES_GENERATOR_H_
7
8 #include <string>
9 #include <vector>
10
11 #include "base/basictypes.h"
12 #include "tools/gn/source_dir.h"
13
14 class ConfigValues;
15 class Err;
16 class Scope;
17 class Token;
18
19 class ConfigValuesGenerator {
20 public:
21 ConfigValuesGenerator(ConfigValues* dest_values,
22 const Scope* scope,
23 const Token& function_token,
24 const SourceDir& input_dir,
25 Err* err);
26 ~ConfigValuesGenerator();
27
28 // Sets the error passed to the constructor on failure.
29 void Run();
30
31 private:
32 void FillDefines();
33 void FillIncludes();
34 void FillCflags();
35 void FillCflags_C();
36 void FillCflags_CC();
37 void FillLdflags();
38
39 ConfigValues* config_values_;
40 const Scope* scope_;
41 const Token& function_token_;
42 const SourceDir input_dir_;
43 Err* err_;
44
45 DISALLOW_COPY_AND_ASSIGN(ConfigValuesGenerator);
46 };
47
48 #endif // TOOLS_GN_CONFIG_VALUES_GENERATOR_H_
OLDNEW
« no previous file with comments | « tools/gn/config_values_extractors.cc ('k') | tools/gn/config_values_generator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698