#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,
                        Scope* scope,
                        const SourceDir& input_dir,
                        Err* err);
  ~ConfigValuesGenerator();
  
  void Run();
 private:
  ConfigValues* config_values_;
  Scope* scope_;
  const SourceDir input_dir_;
  Err* err_;
  DISALLOW_COPY_AND_ASSIGN(ConfigValuesGenerator);
};
#define CONFIG_VALUES_VARS_HELP \
    "  Flags: cflags, cflags_c, cflags_cc, cflags_objc, cflags_objcc,\n" \
    "         defines, include_dirs, ldflags, lib_dirs, libs\n"
#endif