summaryrefslogtreecommitdiff
path: root/chromium/tools/gn/target.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/tools/gn/target.h')
-rw-r--r--chromium/tools/gn/target.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/chromium/tools/gn/target.h b/chromium/tools/gn/target.h
index 1890a535e7a..d842b85788b 100644
--- a/chromium/tools/gn/target.h
+++ b/chromium/tools/gn/target.h
@@ -145,6 +145,10 @@ class Target : public Item {
bool testonly() const { return testonly_; }
void set_testonly(bool value) { testonly_ = value; }
+ // Wether to only create linking information for the target instead of linking
+ bool create_pri_file() const { return create_pri_file_; }
+ void set_create_pri_file(bool value) { create_pri_file_ = value; }
+
OutputFile write_runtime_deps_output() const {
return write_runtime_deps_output_;
}
@@ -346,6 +350,7 @@ class Target : public Item {
bool check_includes_;
bool complete_static_lib_;
bool testonly_;
+ bool create_pri_file_;
FileList inputs_;
std::vector<std::string> data_;
BundleData bundle_data_;