summaryrefslogtreecommitdiff
path: root/gn/src/gn/target.h
diff options
context:
space:
mode:
Diffstat (limited to 'gn/src/gn/target.h')
-rw-r--r--gn/src/gn/target.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/gn/src/gn/target.h b/gn/src/gn/target.h
index 03f456cdb33..0004d096075 100644
--- a/gn/src/gn/target.h
+++ b/gn/src/gn/target.h
@@ -195,6 +195,9 @@ class Target : public Item {
bool testonly() const { return testonly_; }
void set_testonly(bool value) { testonly_ = value; }
+ std::vector<std::string>& rsp_types() { return rsp_types_; }
+ const std::vector<std::string>& rsp_types() const { return rsp_types_; }
+
OutputFile write_runtime_deps_output() const {
return write_runtime_deps_output_;
}
@@ -509,6 +512,7 @@ class Target : public Item {
SourceDir rebase_;
std::vector<std::string> data_keys_;
std::vector<std::string> walk_keys_;
+ std::vector<std::string> rsp_types_;
DISALLOW_COPY_AND_ASSIGN(Target);
};