Index: tools/gn/config_values_generator.h |
diff --git a/tools/gn/config_values_generator.h b/tools/gn/config_values_generator.h |
index d58018e35d59e9db0294fb4aa34b891ff72a139b..eb8a2e6b1668b7216aa3bec0a7e32b7b6e8e0511 100644 |
--- a/tools/gn/config_values_generator.h |
+++ b/tools/gn/config_values_generator.h |
@@ -16,11 +16,14 @@ class Err; |
class Scope; |
class Token; |
+// This class fills in the config values from a given scope. It's shared |
+// between the "config" function call and all the different binary target types |
+// (shared library, static library, etc.) since all of these support the |
+// various flags stored in the ConfigValues class. |
class ConfigValuesGenerator { |
public: |
ConfigValuesGenerator(ConfigValues* dest_values, |
Scope* scope, |
- const Token& function_token, |
const SourceDir& input_dir, |
Err* err); |
~ConfigValuesGenerator(); |
@@ -31,7 +34,6 @@ class ConfigValuesGenerator { |
private: |
ConfigValues* config_values_; |
Scope* scope_; |
- const Token& function_token_; |
const SourceDir input_dir_; |
Err* err_; |