#ifndef TOOLS_GN_CONFIG_VALUES_H_
#define TOOLS_GN_CONFIG_VALUES_H_
#include <string>
#include <vector>
#include "base/basictypes.h"
#include "tools/gn/source_dir.h"
class ConfigValues {
public:
ConfigValues();
~ConfigValues();
#define STRING_VALUES_ACCESSOR(name) \
const std::vector<std::string>& name() const { return name##_; } \
std::vector<std::string>& name() { return name##_; }
#define DIR_VALUES_ACCESSOR(name) \
const std::vector<SourceDir>& name() const { return name##_; } \
std::vector<SourceDir>& name() { return name##_; }
STRING_VALUES_ACCESSOR(cflags)
STRING_VALUES_ACCESSOR(cflags_c)
STRING_VALUES_ACCESSOR(cflags_cc)
STRING_VALUES_ACCESSOR(cflags_objc)
STRING_VALUES_ACCESSOR(cflags_objcc)
STRING_VALUES_ACCESSOR(defines)
DIR_VALUES_ACCESSOR (include_dirs)
STRING_VALUES_ACCESSOR(ldflags)
DIR_VALUES_ACCESSOR (lib_dirs)
STRING_VALUES_ACCESSOR(libs)
#undef STRING_VALUES_ACCESSOR
#undef DIR_VALUES_ACCESSOR
private:
std::vector<std::string> cflags_;
std::vector<std::string> cflags_c_;
std::vector<std::string> cflags_cc_;
std::vector<std::string> cflags_objc_;
std::vector<std::string> cflags_objcc_;
std::vector<std::string> defines_;
std::vector<SourceDir> include_dirs_;
std::vector<std::string> ldflags_;
std::vector<SourceDir> lib_dirs_;
std::vector<std::string> libs_;
DISALLOW_COPY_AND_ASSIGN(ConfigValues);
};
#endif