1# This Source Code Form is subject to the terms of the Mozilla Public
2# License, v. 2.0. If a copy of the MPL was not distributed with this
3# file, You can obtain one at http://mozilla.org/MPL/2.0/.
4from __future__ import absolute_import
5from __future__ import print_function
6import os
7import string
8from mozbuild.util import FileAvoidWrite
9
10
11# The 'unused' arg is the output file from the file_generate action. We actually
12# generate all the files in header_list
13
14
15def gen_wrappers(unused, outdir, compiler, template_file, *header_list):
16    template = open(template_file, "r").read()
17
18    for header in header_list:
19        with FileAvoidWrite(os.path.join(outdir, header)) as f:
20            f.write(string.Template(template).substitute(HEADER=header))
21