Skip to content

Commit

Permalink
gui: update hidden imports (bug 1856652) (#1487)
Browse files Browse the repository at this point in the history
  • Loading branch information
zzzeid authored Oct 3, 2023
1 parent 78217eb commit 9919c6a
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion gui/gui.spec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,19 @@ IS_MAC = sys.platform == "darwin"
block_cipher = None

datas, binaries, hiddenimports = [], [], []
for pkgname in ["glean", "glean_parser", "mozregression", "yamllint", "bs4"]:
for pkgname in [
"glean",
"glean_parser",
"mozregression",
"yamllint",
"bs4",
"redo",
"taskcluster",
"mozinstall",
"mozversion",
"mozdevice",
"mozrunner",
]:
pkg_datas, pkg_binaries, pkg_hiddenimports = collect_all(pkgname)
datas.extend(pkg_datas)
binaries.extend(pkg_binaries)
Expand Down

0 comments on commit 9919c6a

Please sign in to comment.