Home | History | Annotate | Download | only in gn

Lines Matching defs:outputs

29     "  To perform source expansion in the outputs, GN maps every entry in the\n"
30 " sources to every entry in the outputs list, producing the cross\n"
37 " If no placeholders are found, the outputs or args list will be treated\n"
95 " Non-varying outputs:\n"
98 " outputs = [ \"$target_out_dir/output1.dat\",\n"
101 " The outputs in this case will be the two literal files given.\n"
103 " Varying outputs:\n"
106 " outputs = [ \"$target_out_dir/{{source_name_part}}.h\",\n"
145 const Target::FileList& outputs = target->action_values().outputs();
147 for (size_t i = 0; i < outputs.size(); i++)
148 output_template_args.push_back(outputs[i].value());