From 229e86f6086f90f5c132b4a11e5922de899dbb21 Mon Sep 17 00:00:00 2001 From: jahoti Date: Sun, 11 Jul 2021 00:00:00 +0000 Subject: Integrate browser.js into exports_init.js, and streamline the result --- build.sh | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) (limited to 'build.sh') diff --git a/build.sh b/build.sh index f38b5e0..e954ce8 100755 --- a/build.sh +++ b/build.sh @@ -150,7 +150,7 @@ compute_scripts_list_rec() { fi done - echo $FILE + [ "x$FILE" = "xexports_init.js" ] || echo $FILE # exports_init.js is hardcoded to load first; the entire export system depends on it map_set FILESTATES $FILEKEY "processed" } @@ -194,6 +194,11 @@ set_browser() { main() { set_browser "$1" + + # placate importers of these, as they are exported by the yet-to-be-created exports_init.js + EXPORTS__browser=exports_init.js + EXPORTS__is_chrome=exports_init.js + EXPORTS__is_mozilla=exports_init.js SCRIPTDIRS='background html common content' @@ -288,10 +293,11 @@ $(map_get EXPORTCODES $FILEKEY) fi done - echo "\ -window.killtheweb={}; -window.browser = this.browser; /* fix for stupid Firefox */ -" > $BUILDDIR/exports_init.js + if [ "$BROWSER" = "chromium" ]; then + echo "window.killtheweb={is_chrome: true, browser: window.chrome};" > $BUILDDIR/exports_init.js + else + echo "window.killtheweb={is_mozilla: true, browser: this.browser};" > $BUILDDIR/exports_init.js + fi cp -r icons/ copyright licenses/ $BUILDDIR } -- cgit v1.2.3