diff options
author | Gaming4JC <g4jc@hyperbola.info> | 2020-06-11 09:47:03 -0400 |
---|---|---|
committer | Gaming4JC <g4jc@hyperbola.info> | 2020-06-11 11:52:09 -0400 |
commit | 5629e34f80a49730efb92879cd4d43b6941088bd (patch) | |
tree | 0710fba45991d0166cf97c00593e9b09122e5db2 /dom | |
parent | 0955b34e67d3eceb0c5bed9eae26f2456dfb005f (diff) | |
download | uxp-5629e34f80a49730efb92879cd4d43b6941088bd.tar.gz |
Issue #439 - Debug follow up to remove no longer existing headers
Although the headers were removed, they are still referenced in WebIDL causing compiler to fail for debug builds.
This removes TestFunctions.webidl and TestInterfaceJSMaplikeSetlikeIterable.webidl, with nit fix for existing incorrect whitespace.
Diffstat (limited to 'dom')
-rw-r--r-- | dom/webidl/moz.build | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/dom/webidl/moz.build b/dom/webidl/moz.build index 45bf92a97e..78faeac12e 100644 --- a/dom/webidl/moz.build +++ b/dom/webidl/moz.build @@ -647,10 +647,10 @@ WEBIDL_FILES += [ # We only expose our prefable test interfaces in debug builds, just to be on # the safe side. if CONFIG['MOZ_DEBUG']: - WEBIDL_FILES += ['TestFunctions.webidl', - 'TestInterfaceJS.webidl', - 'TestInterfaceJSDictionaries.webidl', - 'TestInterfaceJSMaplikeSetlikeIterable.webidl'] + WEBIDL_FILES += [ + 'TestInterfaceJS.webidl', + 'TestInterfaceJSDictionaries.webidl', + ] if CONFIG['MOZ_SECUREELEMENT']: WEBIDL_FILES += [ |