Index: tools/gn/function_toolchain.cc |
diff --git a/tools/gn/function_toolchain.cc b/tools/gn/function_toolchain.cc |
index 58532551d4f2d65250db6002fbaf675eec20cff7..b046e9c2600be9485df5e0dd88e7b91dbc0ca173 100644 |
--- a/tools/gn/function_toolchain.cc |
+++ b/tools/gn/function_toolchain.cc |
@@ -827,14 +827,16 @@ Value RunTool(Scope* scope, |
!ReadDepsFormat(&block_scope, tool.get(), err) || |
!ReadPattern(&block_scope, "description", subst_validator, tool.get(), |
&Tool::set_description, err) || |
- !ReadString(&block_scope, "lib_switch", tool.get(), |
- &Tool::set_lib_switch, err) || |
+ !ReadString(&block_scope, "lib_switch", tool.get(), &Tool::set_lib_switch, |
+ err) || |
!ReadString(&block_scope, "lib_dir_switch", tool.get(), |
&Tool::set_lib_dir_switch, err) || |
!ReadPattern(&block_scope, "link_output", subst_validator, tool.get(), |
&Tool::set_link_output, err) || |
!ReadPattern(&block_scope, "depend_output", subst_validator, tool.get(), |
&Tool::set_depend_output, err) || |
+ !ReadPattern(&block_scope, "runtime_link_output", subst_validator, |
+ tool.get(), &Tool::set_runtime_link_output, err) || |
!ReadString(&block_scope, "output_prefix", tool.get(), |
&Tool::set_output_prefix, err) || |
!ReadPrecompiledHeaderType(&block_scope, tool.get(), err) || |