Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(980)

Unified Diff: tools/gn/target.h

Issue 1690843002: gn: Add runtime_link_output to tool("solib") (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: e Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/gn/runtime_deps.cc ('k') | tools/gn/target.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/gn/target.h
diff --git a/tools/gn/target.h b/tools/gn/target.h
index 18e5fb816dd38470de6df31e409ef312f850b153..f49fdba4c2ab6be3441c79e0541a832caeb17b5b 100644
--- a/tools/gn/target.h
+++ b/tools/gn/target.h
@@ -257,6 +257,9 @@ class Target : public Item {
const OutputFile& dependency_output_file() const {
return dependency_output_file_;
}
+ const OutputFile& runtime_link_output_file() const {
+ return runtime_link_output_file_;
+ }
// Computes the set of output files resulting from compiling the given source
// file. If the file can be compiled and the tool exists, fills the outputs
@@ -350,6 +353,7 @@ class Target : public Item {
std::vector<OutputFile> computed_outputs_;
OutputFile link_output_file_;
OutputFile dependency_output_file_;
+ OutputFile runtime_link_output_file_;
DISALLOW_COPY_AND_ASSIGN(Target);
};
« no previous file with comments | « tools/gn/runtime_deps.cc ('k') | tools/gn/target.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698