Bug 1858921 - Part 2: Move WasmStructObject inlinable allocation methods to new inlin...
[gecko.git] / config / make-stl-wrappers.py
blobba4d6f74f768f7ee6255004fb941dd491868293f
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/.
4 import os
5 import string
7 from mozbuild.util import FileAvoidWrite
9 # The 'unused' arg is the output file from the file_generate action. We actually
10 # generate all the files in header_list
13 def gen_wrappers(unused, template_file, outdir, compiler, *header_list):
14 template = open(template_file, "r").read()
16 for header in header_list:
17 with FileAvoidWrite(os.path.join(outdir, header)) as f:
18 f.write(string.Template(template).substitute(HEADER=header))