| Index: tools/gn/variables.cc
|
| diff --git a/tools/gn/variables.cc b/tools/gn/variables.cc
|
| index d304bc508cfef300b8b81c6378286b49caed22c9..c09626199d0c6893623ee1cba7508dd793dd8ff2 100644
|
| --- a/tools/gn/variables.cc
|
| +++ b/tools/gn/variables.cc
|
| @@ -1293,6 +1293,18 @@ Examples
|
| libs = [ "ld" ]
|
| )";
|
|
|
| +const char kLinkedDeps[] = "linked_deps";
|
| +const char kLinkedDeps_HelpShort[] =
|
| + "linked_deps: [label list] Public and private dependencies.";
|
| +const char kLinkedDeps_Help[] =
|
| + R"(linked_deps: Public and private linked dependencies sorted in order
|
| + applying.
|
| +
|
| + A list of target labels.
|
| +
|
| + Linked dependencies are pubblic and private (but not data) dependencies.
|
| +)";
|
| +
|
| const char kOutputExtension[] = "output_extension";
|
| const char kOutputExtension_HelpShort[] =
|
| "output_extension: [string] Value to use for the output's file extension.";
|
|
|