mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-25 05:41:12 +00:00
Renaming MRE to GRE (Gecko Runtime Environment)
(Bug 167795, r=chak, sr=leaf)
This commit is contained in:
parent
34e9def83a
commit
3ceadb16c3
@ -35,8 +35,8 @@ ifeq (windows,$(MOZ_WIDGET_TOOLKIT))
|
||||
BASEBROWSER = basebrowser-win
|
||||
BASEBROWSER_SUPP = basebrowser-win-supp
|
||||
CLIENTMANIFEST = client-win
|
||||
MREMANIFEST = mre-win
|
||||
MREMANIFEST_SUPP = mre-win-supp
|
||||
GREMANIFEST = gre-win
|
||||
GREMANIFEST_SUPP = gre-win-supp
|
||||
_PLATFORM = dos
|
||||
WINAPP=mfcembed
|
||||
#WINAPP=winembed
|
||||
@ -91,16 +91,16 @@ endif
|
||||
endif # WINNT
|
||||
|
||||
ifeq ($(OS_ARCH),WINNT)
|
||||
mre:: embed_chrome
|
||||
$(PERL) -I$(srcdir) $(srcdir)/mre.pl mre < $(srcdir)/$(BASEBROWSER) > $(MOZILLA_DIR)/embedding/config/mre-win.tmp
|
||||
$(PERL) $(topsrcdir)/xpinstall/packager/pkgcp.pl -s $(DIST)/bin -d $(DIST) --f $(MOZILLA_DIR)/embedding/config/mre-win.tmp -o $(_PLATFORM) -v
|
||||
-$(RM) -f $(MOZILLA_DIR)/embedding/config/mre-win.tmp
|
||||
$(PERL) $(topsrcdir)/xpinstall/packager/pkgcp.pl -s $(DIST)/bin -d $(DIST) --f $(srcdir)/$(MREMANIFEST) -o $(_PLATFORM) -v
|
||||
$(PERL) -I$(srcdir) $(srcdir)/mre.pl mre_app_support < $(srcdir)/$(BASEBROWSER_SUPP) > $(MOZILLA_DIR)/embedding/config/mre-win-supp.tmp
|
||||
$(PERL) $(topsrcdir)/xpinstall/packager/pkgcp.pl -s $(DIST)/bin -d $(DIST) --f $(MOZILLA_DIR)/embedding/config/mre-win-supp.tmp -o $(_PLATFORM) -v
|
||||
-$(RM) -f $(MOZILLA_DIR)/embedding/config/mre-win-supp.tmp
|
||||
$(PERL) $(topsrcdir)/xpinstall/packager/pkgcp.pl -s $(DIST)/bin -d $(DIST) --f $(srcdir)/$(MREMANIFEST_SUPP) -o $(_PLATFORM) -v
|
||||
$(NSINSTALL) -t $(srcdir)/installed-chrome.txt $(DIST)/mre_app_support/chrome
|
||||
test -d $(DIST)/mre_app_support/plugins || mkdir $(DIST)/mre_app_support/plugins
|
||||
test -d $(DIST)/mre_app_support/components || mkdir $(DIST)/mre_app_support/components
|
||||
gre:: embed_chrome
|
||||
$(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
|
||||
endif # WINNT
|
||||
|
@ -1,11 +1,11 @@
|
||||
; MRE Package File for Win32
|
||||
; GRE Package File for Win32
|
||||
;
|
||||
; The files specified in this manifest will be added to
|
||||
; the list of files specified in basebrowser-win manifest
|
||||
; to create the MRE package
|
||||
; to create the GRE package
|
||||
;
|
||||
|
||||
[mre]
|
||||
[gre]
|
||||
|
||||
;
|
||||
; oji/LiveConnect support
|
||||
|
@ -1,14 +1,14 @@
|
||||
;
|
||||
; MRE app support package file for Win32
|
||||
; GRE app support package file for Win32
|
||||
; embedding resources.
|
||||
;
|
||||
; The files specified in this manifest will be added to
|
||||
; the list of files specified in basebrowser-win-supp
|
||||
; manifest to create the MRE application support package
|
||||
; manifest to create the GRE application support package
|
||||
;
|
||||
;
|
||||
|
||||
[mre_app_support]
|
||||
[gre_app_support]
|
||||
|
||||
;
|
||||
; layout
|
||||
|
@ -1,7 +1,7 @@
|
||||
#!/usr/bin/perl
|
||||
|
||||
#
|
||||
# mre.pl
|
||||
# gre.pl
|
||||
#
|
||||
|
||||
while (<STDIN>) {
|
||||
|
@ -1,75 +0,0 @@
|
||||
; MRE Package File for Win32
|
||||
;
|
||||
; The files specified in this manifest will be added to
|
||||
; the list of files specified in basebrowser-win manifest
|
||||
; to create the MRE package
|
||||
;
|
||||
|
||||
[mre]
|
||||
|
||||
;
|
||||
; oji/LiveConnect support
|
||||
;
|
||||
components\oji.dll
|
||||
components\oji.xpt
|
||||
jsj3250.dll
|
||||
|
||||
;
|
||||
; Type info support for nsIController
|
||||
;
|
||||
components\xuldoc.xpt
|
||||
|
||||
;
|
||||
; history
|
||||
;
|
||||
components\history.xpt
|
||||
|
||||
;
|
||||
; html parser
|
||||
;
|
||||
components\htmlparser.xpt
|
||||
|
||||
;
|
||||
; javascript
|
||||
;
|
||||
components\jsloader.dll
|
||||
|
||||
;
|
||||
; imagelib
|
||||
;
|
||||
components\imgbmp.dll
|
||||
components\imgxbm.dll
|
||||
components\imgmng.dll
|
||||
components\imgicon.dll
|
||||
components\imgicon.xpt
|
||||
components\imglib2.xpt
|
||||
|
||||
;
|
||||
; l10n libraries
|
||||
;
|
||||
components\universalchardet.dll
|
||||
|
||||
;
|
||||
; necko xpts
|
||||
;
|
||||
components\necko_cookie.xpt
|
||||
components\necko_file.xpt
|
||||
components\necko_viewsource.xpt
|
||||
|
||||
;
|
||||
; webbrowserpersist
|
||||
;
|
||||
components\webbrowserpersist.xpt
|
||||
|
||||
;
|
||||
; xml
|
||||
;
|
||||
components\xmlextras.dll
|
||||
components\xmlextras.xpt
|
||||
|
||||
;
|
||||
; XP Install Support
|
||||
;
|
||||
xpicleanup.exe
|
||||
components\xpinstal.dll
|
||||
components\xpinstall.xpt
|
@ -1,40 +0,0 @@
|
||||
;
|
||||
; MRE app support package file for Win32
|
||||
; embedding resources.
|
||||
;
|
||||
; The files specified in this manifest will be added to
|
||||
; the list of files specified in basebrowser-win-supp
|
||||
; manifest to create the MRE application support package
|
||||
;
|
||||
;
|
||||
|
||||
[mre_app_support]
|
||||
|
||||
;
|
||||
; layout
|
||||
;
|
||||
res\dtd\xhtml11.dtd
|
||||
|
||||
;
|
||||
; MathML Support
|
||||
;
|
||||
; http://bugzilla.mozilla.org/show_bug.cgi?id=137029
|
||||
;
|
||||
res\dtd\mathml.dtd
|
||||
|
||||
;
|
||||
; wallet
|
||||
;
|
||||
defaults\wallet\DistinguishedSchema.tbl
|
||||
defaults\wallet\FieldSchema.tbl
|
||||
defaults\wallet\VcardSchema.tbl
|
||||
defaults\wallet\SchemaConcat.tbl
|
||||
defaults\wallet\SchemaStrings.tbl
|
||||
defaults\wallet\PositionalSchema.tbl
|
||||
defaults\wallet\StateSchema.tbl
|
||||
|
||||
;
|
||||
; XP Install Support
|
||||
;
|
||||
defaults\pref\xpinstall.js
|
||||
res\cmessage.txt
|
@ -1,10 +0,0 @@
|
||||
#!/usr/bin/perl
|
||||
|
||||
#
|
||||
# mre.pl
|
||||
#
|
||||
|
||||
while (<STDIN>) {
|
||||
s/\[Embed\]/\[$ARGV[0]\]/;
|
||||
print;
|
||||
}
|
Loading…
Reference in New Issue
Block a user