Output webidl filenames as they are processed, for real this time.

This commit is contained in:
Moonchild
2020-09-23 08:25:15 +00:00
committed by roytam1
parent 78bcb176ea
commit 10a6db6d3a
2 changed files with 3 additions and 0 deletions
@@ -17,6 +17,7 @@ def generateLine(propName, extendedAttrs):
propName)
def generate(output, idlFilename, preprocessorHeader):
print(idlFilename)
sys.stdout.flush()
cpp = list(buildconfig.substs['CPP'])
cpp += shellutil.split(buildconfig.substs['ACDEFINES'])
cpp.append(preprocessorHeader)
@@ -12,6 +12,7 @@ import hashlib
import json
import logging
import os
import sys
from copy import deepcopy
@@ -270,6 +271,7 @@ class WebIDLCodegenManager(LoggingMixin):
for filename in sorted(changed_inputs):
basename = mozpath.basename(filename)
print basename
sys.stdout.flush()
result.inputs.add(filename)
written, deps = self._generate_build_files_for_webidl(filename)
result.created |= written[0]