2012-05-21 15:12:37 +04:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2019-07-08 20:30:34 +03:00
|
|
|
from __future__ import absolute_import
|
2013-02-27 21:00:56 +04:00
|
|
|
from __future__ import print_function
|
2018-05-22 01:01:01 +03:00
|
|
|
import os
|
|
|
|
import string
|
2013-09-06 04:22:39 +04:00
|
|
|
from mozbuild.util import FileAvoidWrite
|
2010-04-02 21:58:11 +04:00
|
|
|
|
2018-05-22 01:01:01 +03:00
|
|
|
|
2017-11-09 01:42:27 +03:00
|
|
|
# The 'unused' arg is the output file from the file_generate action. We actually
|
|
|
|
# generate all the files in header_list
|
2018-05-22 01:01:01 +03:00
|
|
|
|
|
|
|
|
2017-11-09 01:42:27 +03:00
|
|
|
def gen_wrappers(unused, outdir, compiler, template_file, *header_list):
|
2010-04-02 21:58:11 +04:00
|
|
|
template = open(template_file, "r").read()
|
2010-04-21 00:12:02 +04:00
|
|
|
|
2017-11-09 01:42:27 +03:00
|
|
|
for header in header_list:
|
2013-09-06 04:22:39 +04:00
|
|
|
with FileAvoidWrite(os.path.join(outdir, header)) as f:
|
2020-02-29 00:41:18 +03:00
|
|
|
f.write(string.Template(template).substitute(HEADER=header))
|