mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-05 15:28:39 +09:00
Output webidl filenames as they are processed, for real this time.
This commit is contained in:
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]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue