Home | History | Annotate | Download | only in gn

Lines Matching full:outputs

25     "  To perform source expansion in the outputs, GN maps every entry in the\n"
26 " sources to every entry in the outputs list, producing the cross\n"
33 " If no placeholders are found, the outputs or args list will be treated\n"
61 " Non-varying outputs:\n"
64 " outputs = [ \"$target_out_dir/output1.dat\",\n"
67 " The outputs in this case will be the two literal files given.\n"
69 " Varying outputs:\n"
72 " outputs = [ \"$target_out_dir/{{source_name_part}}.h\",\n"
99 const Target::FileList& outputs = target->script_values().outputs();
101 for (size_t i = 0; i < outputs.size(); i++)
102 output_template_args.push_back(outputs[i].value());