mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-03 06:18:38 +09:00
Output webidl filenames as they are processed
This commit is contained in:
parent
768fad9864
commit
b2debf2c18
2 changed files with 2 additions and 0 deletions
|
|
@ -16,6 +16,7 @@ def generateLine(propName, extendedAttrs):
|
|||
return " [%s] attribute DOMString %s;\n" % (", ".join(extendedAttrs),
|
||||
propName)
|
||||
def generate(output, idlFilename, preprocessorHeader):
|
||||
print(idlFilename)
|
||||
cpp = list(buildconfig.substs['CPP'])
|
||||
cpp += shellutil.split(buildconfig.substs['ACDEFINES'])
|
||||
cpp.append(preprocessorHeader)
|
||||
|
|
|
|||
|
|
@ -269,6 +269,7 @@ class WebIDLCodegenManager(LoggingMixin):
|
|||
# Generate bindings from .webidl files.
|
||||
for filename in sorted(changed_inputs):
|
||||
basename = mozpath.basename(filename)
|
||||
print basename
|
||||
result.inputs.add(filename)
|
||||
written, deps = self._generate_build_files_for_webidl(filename)
|
||||
result.created |= written[0]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue