diff --git a/embedding/browser/activex/src/install/README.txt b/embedding/browser/activex/src/install/README.txt
deleted file mode 100644
index 7dc6d9b63b2..00000000000
--- a/embedding/browser/activex/src/install/README.txt
+++ /dev/null
@@ -1,28 +0,0 @@
-Instructions for producing the ActiveX control installer
-
-1. Set your MOZCONFIG to point to the mozconfig.txt here
-2. Build Mozilla
-4. Optionally cd into mozilla/embedding/browser/activex/src/plugin and
- "make MOZ_USE_ACTIVEX_PLUGIN=1"
-3. Copy client-win from here to mozilla/embedding/config
-5. Build the embedding dist
-6. Grab the latest Nullsoft 2.0+ Installer from http://nsis.sourceforge.net/
-7. Edit control.nsi to set the version information and paths at the top
-9. Run build.pl to create a file manifest and local settings and generate the
- installer.
-
-Notes.
-
-You need NSIS 2.0. I used NSIS 2.0b3 but others will probably do as well.
-
-The build script will evolve but presently it assumes the dist dir is $MOZ_SRC\dist\Embed and there
-are a number of manual steps that NEED to be done.
-
-Other things todo:
-
-1. Code sign installer
-2. Add MPL / GPL licence to installer
-3. Add readme
-4. Add sample apps for C++, VB & C#
-5. Automatically grab version number from dist\include\mozilla-config.h
-6. Automatically run all the steps at the top of this file
diff --git a/embedding/browser/activex/src/install/build.pl b/embedding/browser/activex/src/install/build.pl
deleted file mode 100644
index 5add90fb80f..00000000000
--- a/embedding/browser/activex/src/install/build.pl
+++ /dev/null
@@ -1,117 +0,0 @@
-# Run this on Win32 only!
-
-################################################
-# GLOBAL SETTINGS
-#
-# Paths'n'things. Change as appropriate!
-
-$dir_sep = '\\';
-$moz = "$ENV{'MOZ_SRC'}\\mozilla";
-$moz_dist = "$moz\\dist\\Embed";
-$moz_redist = "$moz\\..\\redist";
-$moz_embedding_config = "$moz\\embedding\\config";
-$moz =~ s/\//$dir_sep/g;
-$moz_major_version=1;
-$moz_minor_version=5;
-$moz_version = "v$moz_major_version.$moz_minor_version";
-
-$makensis = "C:/Program Files/NSIS/makensis.exe";
-$control_nsi = "control.nsi";
-$local_nsh = "local.nsh";
-$files_nsh = "files.nsh";
-
-################################################
-
-@dirs = ();
-
-print "Mozilla ActiveX control builder\n\n";
-print "Hold onto your hats, this could be a rough trip\n";
-
-# Copy the client-win to embedding/config
-# cp client-win $moz_embedding_config
-
-# Run the make in embedding/config to ensure a dist
-#chdir $moz_embedding_config or die("Can't cd into $moz_embedding_config!");
-#@make = ( "make" );
-#system(@make);
-
-# Generate local settings
-print "Opening $local_nsh for writing\n";
-open(NSH, ">$local_nsh") or die("Can't write local settings to $local_nsh");
-print NSH "!define DISTDIR \"$moz_dist\"\n";
-print NSH "!define REDISTDIR \"$moz_redist\"\n";
-print NSH "!define VERSION \"$moz_version\"\n";
-print NSH "!define MAJOR_VERSION \"$moz_major_version\"\n";
-print NSH "!define MINOR_VERSION \"$moz_minor_version\"\n";
-close(NSH);
-
-# Generate file manifest
-print "Opening $files_nsh from $moz_dist for writing\n";
-open(FILES_NSH, ">$files_nsh") or die("Can't write files to $files_nsh");
-push @dirs, "";
-read_dir("$moz_dist", "");
-foreach (@dirs)
-{
- if ($_ eq "")
- {
- print FILES_NSH "\n SetOutPath \"\$INSTDIR\"\n";
- }
- else
- {
- print FILES_NSH "\n SetOutPath \"\$INSTDIR\\$_\"\n";
- }
-
- $dir = "$moz_dist\\$_";
-
- opendir(DIR, $dir);
- @files = readdir(DIR);
- foreach (@files)
- {
- # Everything except mfcembed / winembed / readme.html
- next if (/.*mfcembed*/i ||
- /.*winembed*/i ||
- /readme.html/i);
-
- if (! -d "$dir\\$_")
- {
- print FILES_NSH " File $dir\\$_\n";
- }
- }
- closedir(DIR);
-}
-close(FILES_NSH);
-
-# Run NSIS
-
-print "Running makensis.exe to compile it all...\n";
-@nsis = ("$makensis", "$control_nsi");
-system(@nsis) == 0 or die "system @args failed: $?\n";
-
-# TODO - Run codesigning tool - if there is a cert to sign with
-
-
-print "Finished\n";
-
-exit;
-
-sub read_dir($$)
-{
- my ($absdir,$reldir) = @_;
- my @dirList;
- opendir(DIST, "$absdir");
- @dirList = readdir(DIST);
- closedir(DIST);
- foreach (@dirList)
- {
- next if ($_ eq "." || $_ eq "..");
- $absFileName = "$absdir\\$_";
- $fileName = ($reldir eq "") ? $_ : "$reldir\\$_";
-
- if (-d $absFileName)
- {
- push @dirs, $fileName;
- read_dir($absFileName, $fileName);
- }
- }
-}
-
diff --git a/embedding/browser/activex/src/install/client-win b/embedding/browser/activex/src/install/client-win
deleted file mode 100644
index 6bff171f58d..00000000000
--- a/embedding/browser/activex/src/install/client-win
+++ /dev/null
@@ -1,28 +0,0 @@
-;
-; This is the ActiveX client supplemental file read while creating the embedding dist.
-;
-; Copy it to embedding/dist so that additional files here are picked up in addition to
-; those in basebrowser-win.
-
-[Embed]
-
-; ActiveX plugin
-plugins\npmozax.dll
-defaults\pref\activex.js
-components\nsAxSecurityPolicy.js
-
-; MathML
-components\ucvmath.dll
-res\mathml.css
-res\dtd\mathml.dtd
-res\entityTables\mathml20.properties
-res\fonts\mathfont.properties
-res\fonts\mathfontCMEX10.properties
-res\fonts\mathfontCMSY10.properties
-res\fonts\mathfontMath1.properties
-res\fonts\mathfontMath2.properties
-res\fonts\mathfontMath4.properties
-res\fonts\mathfontMTExtra.properties
-res\fonts\mathfontPUA.properties
-res\fonts\mathfontSymbol.properties
-
diff --git a/embedding/browser/activex/src/install/control.nsi b/embedding/browser/activex/src/install/control.nsi
deleted file mode 100644
index dc141829598..00000000000
--- a/embedding/browser/activex/src/install/control.nsi
+++ /dev/null
@@ -1,45 +0,0 @@
-!include "local.nsh"
-
-!define PRODUCT "Mozilla ActiveX Control ${VERSION}"
-
-Name "${PRODUCT}"
-
-InstallDir "$PROGRAMFILES\${PRODUCT}"
-
-OutFile MozillaControl${MAJOR_VERSION}${MINOR_VERSION}.exe
-
-SetCompressor bzip2
-
-DirText "This will install the Mozilla ActiveX Control ${VERSION} on your computer. Pick an installation directory."
-
-Section "Mozilla Control (required)"
-
- ; MSVC++ redistributable DLLs
- SetOutPath "$INSTDIR"
- File ${REDISTDIR}\msvc70\msvcr70.dll
- File ${REDISTDIR}\msvc70\msvcp70.dll
-
- ; Now the Gecko embedding files
- !include "files.nsh"
-
- RegDLL "$INSTDIR\mozctlx.dll"
-
- WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT}" "DisplayName" "${PRODUCT}"
- WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT}" "InstallLocation" "$INSTDIR"
- WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT}" "UninstallString" "$INSTDIR\uninst.exe"
- WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT}" "VersionMajor" "${MAJOR_VERSION}"
- WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT}" "VersionMinor" "${MINOR_VERSION}"
- WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\{PRODUCT}" "NoModify" "1"
- WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT}" "NoRepair" "1"
- WriteUninstaller Uninst.exe
-
-SectionEnd
-
-Section "uninstall"
-
- UnRegDLL "$INSTDIR\mozctlx.dll"
- DeleteRegKey HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT}"
- Delete $INSTDIR\Uninst.exe
- RMDir /r $INSTDIR
-
-SectionEnd
diff --git a/embedding/browser/activex/src/install/mozconfig.txt b/embedding/browser/activex/src/install/mozconfig.txt
deleted file mode 100644
index d8d06100fb2..00000000000
--- a/embedding/browser/activex/src/install/mozconfig.txt
+++ /dev/null
@@ -1,18 +0,0 @@
-# sh
-# Build configuration script
-#
-# See http://www.mozilla.org/build/unix.html for build instructions.
-#
-
-# Options for 'configure' (same as command-line options).
-ac_add_options --disable-debug
-ac_add_options --disable-logging
-ac_add_options --enable-strip
-ac_add_options --enable-optimize
-
-ac_add_options --disable-tests
-ac_add_options --enable-crypto
-ac_add_options --enable-mathml
-ac_add_options --disable-mailnews
-ac_add_options --disable-ldap
-ac_add_options --disable-installer
diff --git a/embedding/browser/activex/src/install/smoketest.html b/embedding/browser/activex/src/install/smoketest.html
deleted file mode 100644
index 92706e21a49..00000000000
--- a/embedding/browser/activex/src/install/smoketest.html
+++ /dev/null
@@ -1,26 +0,0 @@
-
-
-Mozilla ActiveX control smoketest
-
-
-Some links which invoke things that break too often in embedding apps:
-
- - A normal link
- - A link with a _blank target window
- - 1st link with a foo target window
- - 2nd link with a foo target window
- - A JS onclick handler (click me)
- - view-source:
- - data:
- - A page of mathml
- - about:
- - about:config (copy and paste into address bar)
- - about:plugins (copy and paste into address bar)
- - javascript: (copy and paste into address bar)
- - A secure website
- - user / pass prompt
- - External content type
- - Activex scripting content
-
-
-
\ No newline at end of file
diff --git a/embedding/config/GenerateManifest.pm b/embedding/config/GenerateManifest.pm
deleted file mode 100644
index 502798542d3..00000000000
--- a/embedding/config/GenerateManifest.pm
+++ /dev/null
@@ -1,128 +0,0 @@
-#!perl -w
-package GenerateManifest;
-
-require 5.004;
-
-use strict;
-use File::stat;
-require Exporter;
-
-use vars qw(@ISA @EXPORT);
-
-# Package that generates a jar manifest from an input file
-
-@ISA = qw(Exporter);
-@EXPORT = qw(
- GenerateManifest
- );
-
-my(%embed_files) = ();
-
-
-sub GenerateManifest ($$$$$$$$) {
- my($moz, $manifest, $chrome, $locale, $platform, $out_desc, $dir_sep, $verbose) = @_;
- local(*OUTDESC) = $out_desc;
-
- parse_input_manifest($moz, $manifest, $chrome, $locale, $verbose);
- dump_output_manifest($moz, $manifest, $chrome, $locale, $platform, *OUTDESC, $dir_sep, $verbose);
-}
-
-
-sub parse_input_manifest ($$$$$) {
- my($moz, $manifest, $chrome, $locale, $verbose) = @_;
-
- print STDERR "Parsing \"$manifest\"\n" unless !$verbose;
-
- local(*MANIFEST);
- open(MANIFEST, "<$manifest") or die ("Error: Cannot open manifest \"$manifest\".\n");
- while() {
- chomp;
- s/^\s+//;
- s/\s+$//;
-
- # Skip comments & blank lines
- next if (/^\#/);
- next if (/^\s*$/);
-
- # Read key & data
- my($key, $value) = split(/,/, $_);
-
- # Strip out any remaining whitespace from key & value
- for ($key) {
- s/\s+$//;
- }
- for ($value) {
- s/^\s+//;
- }
-
- $embed_files{$key} = $value;
- }
- close(MANIFEST);
-}
-
-sub dump_output_manifest ($$$$$$$$) {
- my($moz, $manifest, $chrome, $locale, $platform, $out_desc, $dir_sep, $verbose) = @_;
- local(*OUTDESC) = $out_desc;
-
- print OUTDESC "embed.jar:\n";
- while (my($key, $value) = each %embed_files) {
-
- $key =~ s/XXXX/$locale/g;
- $value =~ s/XXXX/$locale/g;
- $key =~ s/YYYY/$platform/g;
- $value =~ s/YYYY/$platform/g;
- if ( $dir_sep ne "/" ) { # swap / for $dir_sep
- $value =~ s/\//$dir_sep/g;
- }
-
- # Run ls on the dir/file to ensure it's there and to get a file list back
- my($ls_path) = "$chrome$dir_sep$value";
- my($is_dir) = (-d $ls_path) ? 1 : 0;
- my($is_file) = (-f $ls_path) ? 1 : 0;
-
- print STDERR "Listing \"$ls_path\"\n" unless !$verbose;
-
- if (!$is_dir && !$is_file) {
- print STDERR "Warning: File or directory \"$ls_path\" does not exist.\n";
- next;
- }
-
- # this code previously used |ls -1| to get a dir listing, but that
- # doesn't work in MacPerl. Instead just use opendir() to get the
- # file list (if it's a directory), or add the single file to our list
- # if it's called out individually in the manifest.
- my(@dirList) = ();
- if ( $is_file ) {
- @dirList = ($ls_path);
- }
- else {
- opendir(CHROMEDIR, $ls_path);
- @dirList = readdir(CHROMEDIR);
- closedir(CHROMEDIR);
- }
-
- my($chrome_file) = "";
- my($real_file) = "";
- foreach (@dirList) {
- if ($is_dir) {
- $chrome_file = "$key$dir_sep$_";
- $real_file = "$value$dir_sep$_";
- }
- else {
- $chrome_file = $key;
- $real_file = $value;
- }
- # Ignore directories which are returned by ls
- if (! -d "$chrome$dir_sep$real_file") {
- # before we put the file into the manifest, make sure it
- # uses '/' as the separator. That's what manifest files expect.
- $real_file =~ s/$dir_sep/\//g;
- $chrome_file =~ s/$dir_sep/\//g;
- print OUTDESC " $chrome_file ($real_file)\n";
- }
- }
- }
-}
-
-1;
-
diff --git a/embedding/config/Makefile.in b/embedding/config/Makefile.in
deleted file mode 100644
index 70eec5a65a7..00000000000
--- a/embedding/config/Makefile.in
+++ /dev/null
@@ -1,141 +0,0 @@
-#
-# ***** BEGIN LICENSE BLOCK *****
-# Version: MPL 1.1/GPL 2.0/LGPL 2.1
-#
-# The contents of this file are subject to the Mozilla Public License Version
-# 1.1 (the "License"); you may not use this file except in compliance with
-# the License. You may obtain a copy of the License at
-# http://www.mozilla.org/MPL/
-#
-# Software distributed under the License is distributed on an "AS IS" basis,
-# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
-# for the specific language governing rights and limitations under the
-# License.
-#
-# The Original Code is the Mozilla browser.
-#
-# The Initial Developer of the Original Code is
-# Christopher Blizzard.
-# Portions created by the Initial Developer are Copyright (C) 2001
-# the Initial Developer. All Rights Reserved.
-#
-# Contributor(s):
-#
-# Alternatively, the contents of this file may be used under the terms of
-# either the GNU General Public License Version 2 or later (the "GPL"), or
-# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
-# in which case the provisions of the GPL or the LGPL are applicable instead
-# of those above. If you wish to allow use of your version of this file only
-# under the terms of either the GPL or the LGPL, and not to allow others to
-# use your version of this file under the terms of the MPL, indicate your
-# decision by deleting the provisions above and replace them with the notice
-# and other provisions required by the GPL or the LGPL. If you do not delete
-# the provisions above, a recipient may use your version of this file under
-# the terms of any one of the MPL, the GPL or the LGPL.
-#
-# ***** END LICENSE BLOCK *****
-
-DEPTH = ../..
-topsrcdir = @top_srcdir@
-srcdir = @srcdir@
-VPATH = @srcdir@
-
-include $(DEPTH)/config/autoconf.mk
-include $(topsrcdir)/config/rules.mk
-
-ifeq (cocoa,$(MOZ_WIDGET_TOOLKIT))
- BASEBROWSER = basebrowser-mac-macho
- CLIENTMANIFEST = client-mac-macho
- _PLATFORM = unix
-else
-ifeq (windows,$(MOZ_WIDGET_TOOLKIT))
- BASEBROWSER = basebrowser-win
- BASEBROWSER_SUPP = basebrowser-win-supp
- CLIENTMANIFEST = client-win
- GREMANIFEST = gre-win
- GREMANIFEST_SUPP = gre-win-supp
- _PLATFORM = dos
- WINAPP=mfcembed
- #WINAPP=winembed
-else
- BASEBROWSER = basebrowser-unix
- CLIENTMANIFEST = client-unix
- _PLATFORM = unix
-endif
-endif
-
-
-embed_chrome: embed-jar.mn
-ifneq (jar,$(MOZ_CHROME_FILE_FORMAT))
- $(PERL) -I$(srcdir) $(srcdir)/gen_mn.pl -manifest $(MOZILLA_DIR)/embedding/config/embed-jar.mn -mozpath $(MOZILLA_DIR) -chrome $(DIST)/bin/chrome > embed-tmp.mn
- $(PERL) -I$(MOZILLA_DIR)/config $(MOZILLA_DIR)/config/make-jars.pl -a -v -f $(MOZ_CHROME_FILE_FORMAT) -d $(DIST)/bin/chrome -s $(DIST)/bin/chrome < embed-tmp.mn
- -$(RM) -f embed-tmp.mn
-else
- -$(RM) -rf $(DIST)/Embed/tmpchrome
- for f in $(DIST)/bin/chrome/*.jar; do \
- b=`basename $$f | sed -e 's|.jar$$||'` ; \
- echo "$$b" ; \
- $(NSINSTALL) -D $(DIST)/Embed/tmpchrome/$$b ;\
- $(UNZIP) -q -o -d $(DIST)/Embed/tmpchrome/$$b $$f ; \
- done
- $(PERL) -I$(srcdir) $(srcdir)/gen_mn.pl -manifest $(MOZILLA_DIR)/embedding/config/embed-jar.mn -mozpath $(MOZILLA_DIR) -chrome $(DIST)/Embed/tmpchrome > embed-tmp.mn
- $(PERL) -I$(MOZILLA_DIR)/config $(MOZILLA_DIR)/config/make-jars.pl -a -v -f $(MOZ_CHROME_FILE_FORMAT) -d $(DIST)/bin/chrome -s $(DIST)/Embed/tmpchrome -z $(ZIP) < embed-tmp.mn
- -$(RM) -f embed-tmp.mn
- -$(RM) -rf $(DIST)/Embed/tmpchrome
-endif
-
-embed_copy::
- -mkdir $(DIST)/Embed/defaults/
- -mkdir $(DIST)/Embed/defaults/pref
- -cp $(srcdir)/all.js $(DIST)/Embed/defaults/pref
- $(PERL) $(topsrcdir)/xpinstall/packager/pkgcp.pl -s $(DIST)/bin -d $(DIST) --f $(srcdir)/$(BASEBROWSER) -o $(_PLATFORM) -v
-ifeq ($(OS_ARCH),WINNT)
- $(PERL) $(topsrcdir)/xpinstall/packager/pkgcp.pl -s $(DIST)/bin -d $(DIST) --f $(srcdir)/$(BASEBROWSER_SUPP) -o $(_PLATFORM) -v
-endif
- if test -f "$(srcdir)/$(CLIENTMANIFEST)"; then \
- $(PERL) $(topsrcdir)/xpinstall/packager/pkgcp.pl -s $(DIST)/bin -d $(DIST) --f $(srcdir)/$(CLIENTMANIFEST) -o $(_PLATFORM) -v; \
- fi
- $(NSINSTALL) -t $(srcdir)/installed-chrome.txt $(DIST)/Embed/chrome
- $(NSINSTALL) -t $(srcdir)/readme.html $(DIST)/Embed
- -$(NSINSTALL) -t $(DEPTH)/embedding/lite/$(LIB_PREFIX)embed_lite$(DLL_SUFFIX) $(DIST)/Embed/components
-ifeq ($(OS_ARCH),WINNT)
-ifeq ($(WINAPP),mfcembed)
- $(NSINSTALL) -t $(DIST)/bin/mfcembed.exe $(DIST)/Embed
- $(NSINSTALL) -t $(DIST)/bin/mfcEmbedComponents.dll $(DIST)/Embed
-else
-ifeq ($(WINAPP),winembed)
- $(NSINSTALL) -t $(DIST)/bin/winembed.exe $(DIST)/Embed
-endif
-endif
-ifdef MOZ_DEBUG
- $(NSINSTALL) -t $(DIST)/bin/windbgdlg.exe $(DIST)/Embed
-endif
-endif # WINNT
-
-merge_xpt::
- $(XPIDL_LINK) $(DIST)/Embed/components/xpt_tmp $(DIST)/Embed/components/*.xpt
- $(RM) $(DIST)/Embed/components/*.xpt
- mv $(DIST)/Embed/components/xpt_tmp $(DIST)/Embed/components/all.xpt
-libs::
- $(MAKE) embed_chrome
- $(MAKE) embed_copy
-
-ifeq ($(OS_ARCH),WINNT)
-gre_copy::
- $(PERL) -I$(srcdir) $(srcdir)/gre.pl gre < $(srcdir)/$(BASEBROWSER) > $(MOZILLA_DIR)/embedding/config/gre-win.tmp
- $(PERL) $(topsrcdir)/xpinstall/packager/pkgcp.pl -s $(DIST)/bin -d $(DIST) --f $(MOZILLA_DIR)/embedding/config/gre-win.tmp -o $(_PLATFORM) -v
- -$(RM) -f $(MOZILLA_DIR)/embedding/config/gre-win.tmp
- $(PERL) $(topsrcdir)/xpinstall/packager/pkgcp.pl -s $(DIST)/bin -d $(DIST) --f $(srcdir)/$(GREMANIFEST) -o $(_PLATFORM) -v
- $(PERL) -I$(srcdir) $(srcdir)/gre.pl gre_app_support < $(srcdir)/$(BASEBROWSER_SUPP) > $(MOZILLA_DIR)/embedding/config/gre-win-supp.tmp
- $(PERL) $(topsrcdir)/xpinstall/packager/pkgcp.pl -s $(DIST)/bin -d $(DIST) --f $(MOZILLA_DIR)/embedding/config/gre-win-supp.tmp -o $(_PLATFORM) -v
- -$(RM) -f $(MOZILLA_DIR)/embedding/config/gre-win-supp.tmp
- $(PERL) $(topsrcdir)/xpinstall/packager/pkgcp.pl -s $(DIST)/bin -d $(DIST) --f $(srcdir)/$(GREMANIFEST_SUPP) -o $(_PLATFORM) -v
- $(NSINSTALL) -t $(srcdir)/installed-chrome.txt $(DIST)/gre_app_support/chrome
- test -d $(DIST)/gre_app_support/plugins || mkdir $(DIST)/gre_app_support/plugins
- test -d $(DIST)/gre_app_support/components || mkdir $(DIST)/gre_app_support/components
-
-gre::
- $(MAKE) embed_chrome
- $(MAKE) gre_copy
-
-endif # WINNT
diff --git a/embedding/config/basebrowser-installer-win.pkg b/embedding/config/basebrowser-installer-win.pkg
deleted file mode 100644
index 677f3cb4e1d..00000000000
--- a/embedding/config/basebrowser-installer-win.pkg
+++ /dev/null
@@ -1,288 +0,0 @@
-; Base Embedding Package File for Win32
-;
-;
-;
-
-; *****
-; *
-; * NOTE: Many files that were listed in [Embed] have been moved to the
-; * following pacakges file list:
-; *
-; * xpinstall/packager/xpcom-win.pkg
-; *
-; *****
-
-[Embed]
-;
-; Sample App:
-;
-; Which sample app gets copied is determined in makefile.win
-; by the args passed in to it. Both winembed and mfcembed
-; are copied by default.
-; Run "nmake -f makefile.win APP=winembed" to copy winembed
-; Run "nmake -f makefile.win APP=mfcembed" to copy mfcembed
-
-
-;
-; ActiveX control
-;
-mozctl.dll
-mozctlx.dll
-
-;
-; ActiveX plugin
-;
-plugins\npmozax.dll
-
-;
-; NSPR:
-;
-
-;
-; Javascript:
-;
-
-;
-; XPCOM:
-;
-components\xpcom_base.xpt
-components\xpcom_components.xpt
-components\xpcom_ds.xpt
-components\xpcom_io.xpt
-components\xpcom_nativeapp.xpt
-components\xpcom_threads.xpt
-components\xpcom_xpti.xpt
-
-; xpconnect
-components\xpc3250.dll
-components\xpconnect.xpt
-
-;
-; XP widgets/graphics
-;
-gkgfx.dll
-components\gkwidget.dll
-components\widget.xpt
-components\gfx.xpt
-
-; layout
-moz_art_lgpl.dll
-components\gkcontent.dll
-components\gkgfxthebes.dll
-components\gklayout.dll
-components\gkparser.dll
-components\layout_base.xpt
-components\layout_printing.xpt
-components\layout_xul.xpt
-components\content_base.xpt
-res\dtd\xhtml11.dtd
-
-;
-; Imaging:
-;
-; in xpcom-win
-;mozz.dll
-components\imglib2.dll
-
-;
-; Components: (need to trim fat)
-;
-
-; accessibility (out of process API support)
-; see http://www.mozilla.org/projects/ui/accessibility/vendors-win.html
-components\accessibility.dll
-components\accessibility.xpt
-components\accessibility-msaa.xpt
-
-; caps (JavaScript security)
-components\caps.dll
-components\caps.xpt
-
-; cookies
-components\cookie.dll
-
-; embedding glue:
-; appshell, docshell, uriloader, chrome, components
-components\appshell.dll
-components\appshell.xpt
-components\docshell.dll
-components\docshell.xpt
-components\uriloader.xpt
-components\chrome.dll
-components\chrome.xpt
-components\webbrwsr.dll
-components\webBrowser_core.xpt
-components\embedcomponents.dll
-components\windowwatcher.xpt
-
-; jar
-; in xpcom-win
-;components\jar50.dll
-components\jar.xpt
-
-; prefs
-components\pref.xpt
-components\xppref32.dll
-
-; profile
-components\profile.dll
-components\profile.xpt
-
-; profile sharing - optional
-mozilla-ipcd.exe
-ipc\modules\lockmodule.dll
-ipc\modules\transmgr.dll
-components\ipcdc.dll
-
-; session history
-components\shistory.xpt
-
-; optional typeaheadfind
-; (docs at http://www.mozilla.org/projects/ui/accessibility/typeaheadfind.html)
-;components\suitetypeaheadfind.dll
-;components\suitetypeaheadfind.xpt
-
-; rdf
-components\rdf.dll
-components\rdf.xpt
-
-; required l10n resources
-res\language.properties
-res\langGroups.properties
-res\charsetData.properties
-res\charsetalias.properties
-res\wincharset.properties
-
-; required i18n libraries
-components\i18n.dll
-components\chardet.dll
-components\intl.xpt
-components\locale.xpt
-components\uconv.dll
-components\uconv.xpt
-components\unicharutil.xpt
-
-; dom
-components\dom.xpt
-components\dom_base.xpt
-components\dom_canvas.xpt
-components\dom_core.xpt
-components\dom_css.xpt
-components\dom_events.xpt
-components\dom_geolocation.xpt
-components\dom_html.xpt
-components\dom_loadsave.xpt
-components\dom_offline.xpt
-components\dom_range.xpt
-components\dom_sidebar.xpt
-components\dom_storage.xpt
-components\dom_stylesheets.xpt
-components\dom_traversal.xpt
-components\dom_views.xpt
-components\dom_xbl.xpt
-components\dom_xul.xpt
-components\gksvgrenderer.xpt
-
-; editor
-components\editor.dll
-components\editor.xpt
-
-; find functionality
-; Optional - only if your code uses nsIWebBrowserFind
-components\txtsvc.xpt
-
-; netwerk
-components\necko.dll
-components\necko.xpt
-components\necko_about.xpt
-components\necko_dns.xpt
-components\necko_http.xpt
-components\necko_res.xpt
-components\necko_strconv.xpt
-
-; cache
-components\necko_cache.xpt
-
-; optional for FTP support
-components\necko_ftp.xpt
-
-; plugins
-; Optional - only if you need plugin support
-components\gkplugin.dll
-components\plugin.xpt
-
-; wallet
-; Optional - only if you need password persistence
-components\wallet.dll
-components\wallet.xpt
-
-; psm2
-; Optional - only if you need HTTPS support
-components\pipboot.dll
-components\pipboot.xpt
-components\pipnss.dll
-components\pipnss.xpt
-nssutil3.dll
-nss3.dll
-nssdbm3.chk
-nssdbm3.dll
-smime3.dll
-softokn3.chk
-softokn3.dll
-freebl3.chk
-freebl3.dll
-ssl3.dll
-nssckbi.dll
-
-; xmlextras, optional for XPointer support
-components\xmlextras.dll
-
-;
-; res:
-;
-res\html.css
-res\quirk.css
-res\viewsource.css
-res\hiddenWindow.html
-res\ua.css
-res\forms.css
-res\contenteditable.css
-res\designmode.css
-res\arrow.gif
-res\arrowd.gif
-res\loading-image.png
-res\broken-image.png
-res\entityTables\html40Special.properties
-res\entityTables\htmlEntityVersions.properties
-res\entityTables\html40Latin1.properties
-res\entityTables\html40Symbols.properties
-res\entityTables\transliterate.properties
-res\fonts\fontEncoding.properties
-
-; needed for ftp:// dir listings etc
-res\html\folder.png
-
-;
-; MathML, optional for MathML charset conversion
-;
-components\ucvmath.dll
-res\mathml.css
-res\dtd\mathml.dtd
-res\entityTables\mathml20.properties
-res\fonts\mathfont.properties
-res\fonts\mathfontCMEX10.properties
-res\fonts\mathfontCMSY10.properties
-res\fonts\mathfontMath1.properties
-res\fonts\mathfontMath2.properties
-res\fonts\mathfontMath4.properties
-res\fonts\mathfontMTExtra.properties
-res\fonts\mathfontPUA.properties
-res\fonts\mathfontSymbol.properties
-
-
-; XPInstall
-res\cmessage.txt
-
-; storage
-components\storage.xpt
-components\strgcmps.dll
diff --git a/embedding/config/basebrowser-mac-macho b/embedding/config/basebrowser-mac-macho
deleted file mode 100644
index 423f356b94f..00000000000
--- a/embedding/config/basebrowser-mac-macho
+++ /dev/null
@@ -1,273 +0,0 @@
-; Base Embedding Package File for mach-o mac builds
-;
-;
-;
-
-[Embed]
-
-;
-; Sample App + launch script
-;
-;TestGtkEmbed
-;run-mozilla.sh
-
-;
-; NSPR:
-;
-libnspr4.dylib
-libplc4.dylib
-libplds4.dylib
-
-;
-; Javascript:
-;
-libmozjs.dylib
-
-
-;
-; XPCOM:
-;
-libxpcom.dylib
-libxpcom_core.dylib
-
-;
-; Components: (need to trim fat)
-;
-
-; appshell
-
-components/libnsappshell.dylib
-components/appshell.xpt
-
-
-; caps
-components/libcaps.dylib
-components/caps.xpt
-
-; chrome
-components/libchrome.dylib
-components/chrome.xpt
-
-; cookies
-components/libcookie.dylib
-
-; docshell
-components/libdocshell.dylib
-components/docshell.xpt
-
-; dom
-components/dom.xpt
-components/dom_base.xpt
-components/dom_canvas.xpt
-components/dom_core.xpt
-components/dom_css.xpt
-components/dom_events.xpt
-components/dom_geolocation.xpt
-components/dom_html.xpt
-components/dom_offline.xpt
-components/dom_range.xpt
-components/dom_stylesheets.xpt
-components/dom_traversal.xpt
-components/dom_views.xpt
-components/dom_xbl.xpt
-components/dom_xul.xpt
-
-; editor
-components/libeditor.dylib
-components/editor.xpt
-
-; embedding
-components/libwebbrwsr.dylib
-components/webBrowser_core.xpt
-components/libembedcomponents.dylib
-components/windowwatcher.xpt
-
-; find functionality
-components/txtsvc.xpt
-
-; gfx
-components/libgkgfxthebes.dylib
-components/gfx.xpt
-libgkgfx.dylib
-libthebes.dylib
-
-; jar
-components/libjar50.dylib
-components/jar.xpt
-
-; layout
-res/dtd/xhtml11.dtd
-components/libgklayout.dylib
-components/libhtmlpars.dylib
-components/layout_xul.xpt
-components/layout_xul_tree.xpt
-components/content_base.xpt
-components/layout_base.xpt
-components/layout_printing.xpt
-
-; netwerk
-
-libmozz.dylib
-components/libnecko.dylib
-components/necko.xpt
-components/necko_about.xpt
-components/necko_cache.xpt
-components/necko_dns.xpt
-components/necko_ftp.xpt
-components/necko_http.xpt
-components/necko_res.xpt
-components/necko_strconv.xpt
-
-; imagelib
-components/libimglib2.dylib
-components/imglib2.xpt
-
-; prefs
-components/pref.xpt
-components/libpref.dylib
-
-; profile
-components/libprofile.dylib
-components/profile.xpt
-components/mozreg.dylib
-components/mozreg.xpt
-
-; profile sharing - optional
-ipc/modules/liblockmodule.dylib
-ipc/modules/libtransmgr.dylib
-mozilla-ipcd
-components/libipcdc.dylib
-
-; wallet
-; Optional - only if you need password persistence
-components/libwallet.dylib
-components/wallet.xpt
-
-; download progress
-; Optional - you can implement your own download progress dialog
-; then this is no longer required
-;components/nsProgressDialog.js
-;components/nsHelperAppDlg.js
-;components/nsDownloadProgressListener.js
-;components/downloadmanager.xpt
-
-; psm2
-; Optional - only if you need PSM2 support
-components/libpipboot.dylib
-components/pipboot.xpt
-components/libpipnss.dylib
-components/pipnss.xpt
-chrome/pipnss.jar
-defaults/pref/security-prefs.js
-libnss3.dylib
-libnssutil3.dylib
-libnssdbm3.chk
-libnssdbm3.dylib
-libsmime3.dylib
-libsoftokn3.chk
-libsoftokn3.dylib
-libfreebl3.chk
-libfreebl3.dylib
-libssl3.dylib
-libnssckbi.dylib
-
-; rdf
-components/librdf.dylib
-components/rdf.xpt
-
-; session history
-components/shistory.xpt
-
-; optional typeaheadfind
-; (docs at http://www.mozilla.org/projects/ui/accessibility/typeaheadfind.html)
-;components/suitetypeaheadfind.shlb
-;components/suitetypeaheadfind.xpt
-
-; required l10n libraries
-
-components/libuconv.dylib
-components/libi18n.dylib
-components/libchardet.dylib
-components/uconv.xpt
-components/unicharutil.xpt
-components/intl.xpt
-
-res/language.properties
-res/langGroups.properties
-res/charsetData.properties
-res/charsetalias.properties
-res/maccharset.properties
-; res/strres.properties
-
-; required prefs files
-greprefs/*
-
-
-; uriloader
-components/uriloader.xpt
-
-; widget
-components/libwidget_mac.dylib
-components/widget.xpt
-libwidget.rsrc
-
-; xmlextras, optional for XPointer support
-components/libxmlextras.dylib
-
-; xpconnect
-components/libxpconnect.dylib
-components/xpconnect.xpt
-
-; xpcom
-components/xpcom_base.xpt
-components/xpcom_components.xpt
-components/xpcom_ds.xpt
-components/xpcom_io.xpt
-components/xpcom_threads.xpt
-components/xpcom_xpti.xpt
-
-;
-; Widget-Toolkit and Res (consult hyatt@netscape.com before modifying):
-;
-chrome/embed.jar
-;
-; res:
-;
-res/html.css
-res/quirk.css
-res/viewsource.css
-res/hiddenWindow.html
-res/ua.css
-res/forms.css
-res/contenteditable.css
-res/designmode.css
-res/arrow.gif
-res/arrowd.gif
-res/loading-image.png
-res/broken-image.png
-res/entityTables/html40Special.properties
-res/entityTables/htmlEntityVersions.properties
-res/entityTables/html40Latin1.properties
-res/entityTables/html40Symbols.properties
-res/entityTables/transliterate.properties
-
-;
-; Optional for MathML
-;
-res/mathml.css
-res/dtd/mathml.dtd
-res/entityTables/mathml20.properties
-res/fonts/mathfont.properties
-res/fonts/mathfontCMEX10.properties
-res/fonts/mathfontCMSY10.properties
-res/fonts/mathfontMath1.properties
-res/fonts/mathfontMath2.properties
-res/fonts/mathfontMath4.properties
-res/fonts/mathfontMTExtra.properties
-res/fonts/mathfontPUA.properties
-res/fonts/mathfontSymbol.properties
-components/libucvmath.dylib
-
-; svg
-components/dom_svg.xpt
-res/svg.css
diff --git a/embedding/config/basebrowser-qnx b/embedding/config/basebrowser-qnx
deleted file mode 100644
index 7aed5576857..00000000000
--- a/embedding/config/basebrowser-qnx
+++ /dev/null
@@ -1,268 +0,0 @@
-; Base Embedding Package File for linux
-;
-;
-;
-
-[Embed]
-
-;
-; Sample App + launch script
-;
-TestGtkEmbed
-run-mozilla.sh
-
-;
-; NSPR:
-;
-libnspr4.so
-libplc4.so
-libplds4.so
-
-;
-; Javascript:
-;
-libmozjs.so
-
-;
-; XPCOM:
-;
-libxpcom.so
-libxpcom_core.so
-components/xpcom_base.xpt
-components/xpcom_components.xpt
-components/xpcom_ds.xpt
-components/xpcom_io.xpt
-components/xpcom_threads.xpt
-components/xpcom_xpti.xpt
-
-; xpconnect
-components/libxpconnect.so
-components/xpconnect.xpt
-
-;
-; XP widgets/graphics
-;
-
-libgkgfx.so
-libgfxpsshar.so
-components/gfx.xpt
-components/widget.xpt
-
-;
-; qnx photon widget and gfx modules
-;
-components/libwidget_photon.so
-components/libgfx_photon.so
-
-; layout
-libmoz_art_lgpl.so
-res/dtd/xhtml11.dtd
-components/libgklayout.so
-components/libhtmlpars.so
-components/layout_base.xpt
-components/layout_printing.xpt
-components/layout_xul.xpt
-components/layout_xul_tree.xpt
-components/content_base.xpt
-
-; Imaging:
-libmozz.so
-components/libimglib2.so
-components/imglib2.xpt
-
-;
-; Components: (need to trim fat)
-;
-
-; appshell
-
-components/libnsappshell.so
-components/appshell.xpt
-
-
-; caps
-components/libcaps.so
-components/caps.xpt
-
-; cookies
-components/libcookie.so
-
-; docshell
-; embedding glue:
-; appshell, docshell, uriloader, chrome, components
-components/libdocshell.so
-components/docshell.xpt
-components/uriloader.xpt
-components/libchrome.so
-components/chrome.xpt
-components/libwebbrwsr.so
-components/webBrowser_core.xpt
-components/libembedcomponents.so
-components/windowwatcher.xpt
-
-; jar
-components/libjar50.so
-components/jar.xpt
-
-; prefs
-components/pref.xpt
-components/libpref.so
-
-; profile
-components/libprofile.so
-components/profile.xpt
-
-; session history
-components/shistory.xpt
-
-; optional typeaheadfind
-; (docs at http://www.mozilla.org/projects/ui/accessibility/typeaheadfind.html)
-;components/libsuitetypeaheadfind.so
-;components/suitetypeaheadfind.xpt
-
-; rdf
-components/librdf.so
-components/rdf.xpt
-
-; required l10n libraries
-
-components/intl.xpt
-components/locale.xpt
-components/libuconv.so
-components/libi18n.so
-components/uconv.xpt
-components/unicharutil.xpt
-
-;
-; DOM:
-;
-components/dom.xpt
-components/dom_base.xpt
-components/dom_core.xpt
-components/dom_css.xpt
-components/dom_events.xpt
-components/dom_html.xpt
-components/dom_geolocation.xpt
-components/dom_offline.xpt
-components/dom_range.xpt
-components/dom_stylesheets.xpt
-components/dom_traversal.xpt
-components/dom_views.xpt
-components/dom_xbl.xpt
-components/dom_xul.xpt
-
-; editor
-components/libeditor.so
-components/editor.xpt
-
-; find functionality
-; Optional - only if your code uses nsIWebBrowserFind
-components/txtsvc.xpt
-
-; netwerk
-components/libnecko.so
-components/necko.xpt
-components/necko_about.xpt
-components/necko_dns.xpt
-components/necko_http.xpt
-components/necko_res.xpt
-components/necko_strconv.xpt
-
-; cache
-components/necko_cache.xpt
-
-; optional for FTP support
-components/necko_ftp.xpt
-
-; plugins
-; Optional - only if you need plugin support
-components/libgkplugin.so
-components/plugin.xpt
-
-; wallet
-; Optional - only if you need password persistence
-components/libwallet.so
-components/wallet.xpt
-
-; download progress
-; Optional - you can implement your own download progress dialog
-; then this is no longer required
-;components/nsProgressDialog.js
-;components/nsHelperAppDlg.js
-;components/nsDownloadProgressListener.js
-
-; psm2
-; Optional - only if you need HTTPS support
-components/libpipboot.so
-components/pipboot.xpt
-components/libpipnss.so
-components/pipnss.xpt
-chrome/pipnss.jar
-defaults/pref/security-prefs.js
-libnssutil3.so
-libnss3.so
-libnssdbm3.chk
-libnssdbm3.so
-libsmime3.so
-libsoftokn3.chk
-libsoftokn3.so
-libfreebl3.chk
-libfreebl3.so
-libssl3.so
-libnssckbi.so
-
-; xmlextras, optional for XPointer support
-components/libxmlextras.so
-
-res/language.properties
-res/langGroups.properties
-res/charsetData.properties
-res/charsetalias.properties
-res/unixcharset.properties
-; res/strres.properties
-
-; required prefs files
-greprefs/*
-
-;
-; Widget-Toolkit and Res (consult hyatt@netscape.com before modifying):
-;
-chrome/embed.jar
-
-;
-; res:
-;
-res/html.css
-res/quirk.css
-res/viewsource.css
-res/hiddenWindow.html
-res/ua.css
-res/forms.css
-res/contenteditable.css
-res/designmode.css
-res/arrow.gif
-res/arrowd.gif
-res/loading-image.png
-res/broken-image.png
-res/entityTables/html40Special.properties
-res/entityTables/htmlEntityVersion.properties
-res/entityTables/html40Latin1.properties
-res/entityTables/html40Symbols.properties
-res/entityTables/transliterate.properties
-
-;
-; Optional for MathML
-;
-;res/mathml.css
-;res/dtd/mathml.dtd
-;res/entityTables/mathml20.properties
-;res/fonts/mathfont.properties
-;res/fonts/mathfontCMEX10.properties
-;res/fonts/mathfontCMSY10.properties
-;res/fonts/mathfontMath1.properties
-;res/fonts/mathfontMath2.properties
-;res/fonts/mathfontMath4.properties
-;res/fonts/mathfontMTExtra.properties
-;res/fonts/mathfontPUA.properties
-;res/fonts/mathfontSymbol.properties
-;components/libucvmath.so
diff --git a/embedding/config/basebrowser-unix b/embedding/config/basebrowser-unix
deleted file mode 100644
index a5b42f3e59e..00000000000
--- a/embedding/config/basebrowser-unix
+++ /dev/null
@@ -1,270 +0,0 @@
-; Base Embedding Package File for linux
-;
-;
-;
-
-[Embed]
-
-;
-; Sample App + launch script
-;
-TestGtkEmbed
-run-mozilla.sh
-
-;
-; NSPR:
-;
-libnspr4.so
-libplc4.so
-libplds4.so
-
-;
-; Javascript:
-;
-libmozjs.so
-
-;
-; XPCOM:
-;
-libxpcom.so
-libxpcom_core.so
-components/xpcom_base.xpt
-components/xpcom_components.xpt
-components/xpcom_ds.xpt
-components/xpcom_io.xpt
-components/xpcom_threads.xpt
-components/xpcom_xpti.xpt
-
-; xpconnect
-components/libxpconnect.so
-components/xpconnect.xpt
-
-;
-; XP widgets/graphics
-;
-
-libgkgfx.so
-libgtksuperwin.so
-libgtkembedmoz.so
-libgfxpsshar.so
-components/libgkgfxthebes.so
-components/gfx.xpt
-components/libwidget_gtk2.so
-components/widget.xpt
-
-; layout
-libmoz_art_lgpl.so
-res/dtd/xhtml11.dtd
-components/libgklayout.so
-components/libhtmlpars.so
-components/layout_base.xpt
-components/layout_printing.xpt
-components/layout_xul.xpt
-components/layout_xul_tree.xpt
-components/content_base.xpt
-
-; Imaging:
-libmozz.so
-components/libimglib2.so
-components/imglib2.xpt
-
-;
-; Components: (need to trim fat)
-;
-
-; appshell
-
-components/libnsappshell.so
-components/appshell.xpt
-
-
-; caps
-components/libcaps.so
-components/caps.xpt
-
-; cookies
-components/libcookie.so
-
-; docshell
-; embedding glue:
-; appshell, docshell, uriloader, chrome, components
-components/libdocshell.so
-components/docshell.xpt
-components/uriloader.xpt
-; we have either chrome or chrmlite, depending on MOZ_XUL
-components/libchrome.so
-components/chrome.xpt
-components/libchrmlite.so
-components/libwebbrwsr.so
-components/webBrowser_core.xpt
-components/libembedcomponents.so
-components/windowwatcher.xpt
-
-; jar
-components/libjar50.so
-components/jar.xpt
-
-; prefs
-components/pref.xpt
-components/libpref.so
-
-; profile
-components/libprofile.so
-components/profile.xpt
-
-; session history
-components/shistory.xpt
-
-; optional typeaheadfind
-; (docs at http://www.mozilla.org/projects/ui/accessibility/typeaheadfind.html)
-;components/libsuitetypeaheadfind.so
-;components/suitetypeaheadfind.xpt
-
-; rdf
-components/librdf.so
-components/rdf.xpt
-
-; required l10n libraries
-
-components/intl.xpt
-components/locale.xpt
-components/libuconv.so
-components/libi18n.so
-components/libchardet.so
-components/uconv.xpt
-components/unicharutil.xpt
-
-;
-; DOM:
-;
-components/dom.xpt
-components/dom_base.xpt
-components/dom_core.xpt
-components/dom_css.xpt
-components/dom_events.xpt
-components/dom_html.xpt
-components/dom_geolocation.xpt
-components/dom_offline.xpt
-components/dom_range.xpt
-components/dom_stylesheets.xpt
-components/dom_traversal.xpt
-components/dom_views.xpt
-components/dom_xbl.xpt
-components/dom_xul.xpt
-
-; editor
-components/libeditor.so
-components/editor.xpt
-
-; find functionality
-; Optional - only if your code uses nsIWebBrowserFind
-components/txtsvc.xpt
-
-; netwerk
-components/libnecko.so
-components/necko.xpt
-components/necko_about.xpt
-components/necko_dns.xpt
-components/necko_http.xpt
-components/necko_res.xpt
-components/necko_strconv.xpt
-
-; cache
-components/necko_cache.xpt
-
-; optional for FTP support
-components/necko_ftp.xpt
-
-; plugins
-; Optional - only if you need plugin support
-components/libgkplugin.so
-components/plugin.xpt
-
-; wallet
-; Optional - only if you need password persistence
-components/libwallet.so
-components/wallet.xpt
-
-; download progress
-; Optional - you can implement your own download progress dialog
-; then this is no longer required
-;components/nsProgressDialog.js
-;components/nsHelperAppDlg.js
-;components/nsDownloadProgressListener.js
-
-; psm2
-; Optional - only if you need HTTPS support
-components/libpipboot.so
-components/pipboot.xpt
-components/libpipnss.so
-components/pipnss.xpt
-chrome/pipnss.jar
-defaults/pref/security-prefs.js
-libnssutil3.so
-libnss3.so
-libnssdbm3.chk
-libnssdbm3.so
-libsmime3.so
-libsoftokn3.chk
-libsoftokn3.so
-libfreebl3.chk
-libfreebl3.so
-libssl3.so
-libnssckbi.so
-
-; xmlextras, optional for XPointer support
-components/libxmlextras.so
-
-res/language.properties
-res/langGroups.properties
-res/charsetData.properties
-res/charsetalias.properties
-res/unixcharset.properties
-; res/strres.properties
-
-; required prefs files
-greprefs/*
-
-
-;
-; Widget-Toolkit and Res (consult hyatt@netscape.com before modifying):
-;
-chrome/embed.jar
-
-;
-; res:
-;
-res/html.css
-res/quirk.css
-res/viewsource.css
-res/hiddenWindow.html
-res/ua.css
-res/forms.css
-res/contenteditable.css
-res/designmode.css
-res/arrow.gif
-res/arrowd.gif
-res/loading-image.png
-res/broken-image.png
-res/entityTables/html40Special.properties
-res/entityTables/htmlEntityVersion.properties
-res/entityTables/html40Latin1.properties
-res/entityTables/html40Symbols.properties
-res/entityTables/transliterate.properties
-
-;
-; Optional for MathML
-;
-;res/mathml.css
-;res/dtd/mathml.dtd
-;res/entityTables/mathml20.properties
-;res/fonts/mathfont.properties
-;res/fonts/mathfontCMEX10.properties
-;res/fonts/mathfontCMSY10.properties
-;res/fonts/mathfontMath1.properties
-;res/fonts/mathfontMath2.properties
-;res/fonts/mathfontMath4.properties
-;res/fonts/mathfontMTExtra.properties
-;res/fonts/mathfontPUA.properties
-;res/fonts/mathfontSymbol.properties
-;components/libucvmath.so
diff --git a/embedding/config/basebrowser-win b/embedding/config/basebrowser-win
deleted file mode 100644
index 1d3f1267767..00000000000
--- a/embedding/config/basebrowser-win
+++ /dev/null
@@ -1,293 +0,0 @@
-; Base Embedding Package File for Win32
-;
-;
-;
-
-[Embed]
-
-
-;
-; Sample App:
-;
-; Which sample app gets copied is determined in makefile.win
-; by the args passed in to it. Both winembed and mfcembed
-; are copied by default.
-; Run "nmake -f makefile.win APP=winembed" to copy winembed
-; Run "nmake -f makefile.win APP=mfcembed" to copy mfcembed
-
-
-;
-; ActiveX control
-;
-mozctl.dll
-mozctlx.dll
-
-;
-; ActiveX plugin
-;
-plugins\npmozax.dll
-components\nsAxSecurityPolicy.js
-
-
-;
-; NSPR:
-;
-nspr4.dll
-plc4.dll
-plds4.dll
-
-;
-; Javascript:
-;
-js3250.dll
-
-;
-; XPCOM:
-;
-xpcom.dll
-xpcom_core.dll
-components\xpcom_base.xpt
-components\xpcom_components.xpt
-components\xpcom_ds.xpt
-components\xpcom_io.xpt
-components\xpcom_nativeapp.xpt
-components\xpcom_threads.xpt
-components\xpcom_xpti.xpt
-components\mozreg.dll
-;components\mozreg.xpt
-
-; required prefs files
-greprefs\*
-
-; xpconnect
-components\xpc3250.dll
-components\xpconnect.xpt
-
-;
-; XP widgets/graphics
-;
-gkgfx.dll
-components\gkgfxthebes.dll
-components\gkwidget.dll
-components\widget.xpt
-components\gfx.xpt
-
-; layout
-moz_art_lgpl.dll
-components\gklayout.dll
-components\gkparser.dll
-components\layout_base.xpt
-components\layout_printing.xpt
-components\layout_xul.xpt
-components\layout_xul_tree.xpt
-components\content_base.xpt
-res\dtd\xhtml11.dtd
-
-;
-; Imaging:
-;
-mozz.dll
-components\imglib2.dll
-components\imgicon.xpt
-components\libimgicon.dll
-
-;
-; Components: (need to trim fat)
-;
-
-; accessibility (out of process API support)
-; see http://www.mozilla.org/projects/ui/accessibility/vendors-win.html
-components\accessibility.dll
-components\accessibility.xpt
-components\accessibility-msaa.xpt
-
-; caps (JavaScript security)
-components\caps.dll
-components\caps.xpt
-
-; cookies
-components\cookie.dll
-
-; embedding glue:
-; appshell, docshell, uriloader, chrome, components
-components\appshell.dll
-components\appshell.xpt
-components\docshell.dll
-components\docshell.xpt
-components\uriloader.xpt
-components\chrome.dll
-components\chrome.xpt
-components\webbrwsr.dll
-components\webBrowser_core.xpt
-components\embedcomponents.dll
-components\windowwatcher.xpt
-
-; jar
-components\jar50.dll
-components\jar.xpt
-
-; prefs
-components\pref.xpt
-components\xppref32.dll
-
-; profile
-components\profile.dll
-components\profile.xpt
-
-; profile sharing - optional
-mozilla-ipcd.exe
-ipc\modules\lockmodule.dll
-ipc\modules\transmgr.dll
-components\ipcdc.dll
-
-; session history
-components\shistory.xpt
-
-; optional typeaheadfind
-; (docs at http://www.mozilla.org/projects/ui/accessibility/typeaheadfind.html)
-;components\suitetypeaheadfind.dll
-;components\suitetypeaheadfind.xpt
-
-; rdf
-components\rdf.dll
-components\rdf.xpt
-
-; required l10n resources
-res\language.properties
-res\langGroups.properties
-res\charsetData.properties
-res\charsetalias.properties
-res\wincharset.properties
-; res\strres.properties
-
-; required i18n libraries
-components\i18n.dll
-components\chardet.dll
-components\intl.xpt
-components\locale.xpt
-components\uconv.dll
-components\uconv.xpt
-components\unicharutil.xpt
-
-; dom
-components\dom.xpt
-components\dom_base.xpt
-components\dom_canvas.xpt
-components\dom_core.xpt
-components\dom_css.xpt
-components\dom_events.xpt
-components\dom_html.xpt
-components\dom_geolocation.xpt
-components\dom_loadsave.xpt
-components\dom_offline.xpt
-components\dom_range.xpt
-components\dom_sidebar.xpt
-components\dom_storage.xpt
-components\dom_stylesheets.xpt
-components\dom_traversal.xpt
-components\dom_views.xpt
-components\dom_xbl.xpt
-components\dom_xul.xpt
-components\gksvgrenderer.xpt
-
-; editor
-components\editor.dll
-components\editor.xpt
-
-; find functionality
-; Optional - only if your code uses nsIWebBrowserFind
-components\txtsvc.xpt
-
-; netwerk
-components\necko.dll
-components\necko.xpt
-components\necko_about.xpt
-components\necko_dns.xpt
-components\necko_ftp.xpt
-components\necko_http.xpt
-components\necko_res.xpt
-components\necko_strconv.xpt
-
-; cache
-components\necko_cache.xpt
-
-; plugins
-; Optional - only if you need plugin support
-components\gkplugin.dll
-components\plugin.xpt
-plugins\npnul32.dll
-
-; wallet
-; Optional - only if you need password persistence
-components\wallet.dll
-components\wallet.xpt
-
-; download progress
-; Optional - you can implement your own download progress dialog
-; then this is no longer required
-;components\nsProgressDialog.js
-;components\nsHelperAppDlg.js
-;components\nsDownloadProgressListener.js
-
-; psm2
-; Optional - only if you need HTTPS support
-components\pipboot.dll
-components\pipboot.xpt
-components\pipnss.dll
-components\pipnss.xpt
-nssutil3.dll
-nss3.dll
-nssdbm3.chk
-nssdbm3.dll
-smime3.dll
-softokn3.chk
-softokn3.dll
-freebl3.chk
-freebl3.dll
-ssl3.dll
-nssckbi.dll
-
-; xmlextras, optional for XPointer support
-components\xmlextras.dll
-
-;
-; res:
-;
-res\html.css
-res\quirk.css
-res\viewsource.css
-res\hiddenWindow.html
-res\ua.css
-res\forms.css
-res/contenteditable.css
-res/designmode.css
-res\arrow.gif
-res\arrowd.gif
-res\loading-image.png
-res\broken-image.png
-res\entityTables\html40Special.properties
-res\entityTables\htmlEntityVersions.properties
-res\entityTables\html40Latin1.properties
-res\entityTables\html40Symbols.properties
-res\entityTables\transliterate.properties
-res\fonts\fontEncoding.properties
-
-; needed for ftp:// dir listings etc
-res\html\folder.png
-
-;
-; MathML, optional for MathML charset conversion
-;
-; components\ucvmath.dll
-; res\mathml.css
-; res\dtd\mathml.dtd
-; res\entityTables\mathml20.properties
-; res\fonts\mathfont.properties
-; res\fonts\mathfontCMEX10.properties
-; res\fonts\mathfontCMSY10.properties
-; res\fonts\mathfontMath1.properties
-; res\fonts\mathfontMath2.properties
-; res\fonts\mathfontMath4.properties
-; res\fonts\mathfontMTExtra.properties
-; res\fonts\mathfontPUA.properties
-; res\fonts\mathfontSymbol.properties
diff --git a/embedding/config/basebrowser-win-supp b/embedding/config/basebrowser-win-supp
deleted file mode 100644
index 06d024a4168..00000000000
--- a/embedding/config/basebrowser-win-supp
+++ /dev/null
@@ -1,19 +0,0 @@
-;
-; Base Embedding Package File for Win32
-; embedding resources. Please place any
-; references to res, prefs, chrome etc.
-; in this file
-;
-
-[Embed]
-
-; psm2
-; Optional - only if you need PSM2 support
-chrome\pipnss.jar
-defaults\pref\security-prefs.js
-
-;
-; Widget-Toolkit and Res (consult hyatt@netscape.com before modifying):
-;
-chrome\embed.jar
-
diff --git a/embedding/config/embed-jar.mn b/embedding/config/embed-jar.mn
deleted file mode 100644
index a7ef181335c..00000000000
--- a/embedding/config/embed-jar.mn
+++ /dev/null
@@ -1,73 +0,0 @@
-# Specify files or whole directories from the chrome that embedding
-# needs to include.
-#
-# Format is:
-#
-# ,