--- mozilla/client.mk | 36 +++++++++++++++++++++++++++++++++--- 1 file changed, 33 insertions(+), 3 deletions(-) Index: mozclient/mozilla/client.mk =================================================================== --- mozclient.orig/mozilla/client.mk 2007-09-03 00:16:07.000000000 +0200 +++ mozclient/mozilla/client.mk 2007-09-03 00:22:58.000000000 +0200 @@ -57,16 +57,17 @@ # You must specify which products/modules you wish to checkout, with # MOZ_CO_PROJECT and MOZ_CO_MODULE variables. # # MOZ_CO_PROJECT possibilities include the following: # nss # nspr # suite (Seamonkey suite) # browser (aka Firefox) +# xulbrowser (aka Firefox using libxul from xulrunner) # mail (aka Thunderbird) # minimo (small browser for devices) # composer (standalone composer, aka NVU) # calendar (aka Sunbird, use this to build the calendar extensions also) # xulrunner # camino # tamarin # @@ -107,16 +108,17 @@ AVAILABLE_PROJECTS = \ all \ nss \ nspr \ suite \ toolkit \ browser \ + xulbrowser \ mail \ minimo \ composer \ calendar \ xulrunner \ camino \ necko \ tamarin \ @@ -272,38 +274,66 @@ editor/ui \ extensions/reporter \ $(NULL) BOOTSTRAP_suite := \ $(BOOTSTRAP_toolkit) \ $(NULL) +MODULES_NS_xulbrowser := \ + $(MODULES_NS_necko) \ + $(NULL) + MODULES_NS_browser := \ $(MODULES_NS_toolkit) \ $(NULL) +MODULES_xulbrowser := \ + mozilla/README \ + mozilla/config \ + mozilla/build \ + mozilla/intl \ + mozilla/modules/libpref \ + mozilla/tools/test-harness \ + mozilla/extensions \ + mozilla/toolkit \ + mozilla/xpinstall \ + mozilla/browser \ + mozilla/other-licenses/branding/firefox \ + mozilla/other-licenses/7zstub/firefox \ + $(NULL) + MODULES_browser := \ $(MODULES_toolkit) \ mozilla/browser \ mozilla/other-licenses/branding/firefox \ mozilla/other-licenses/7zstub/firefox \ $(NULL) -LOCALES_browser := \ - $(LOCALES_toolkit) \ +LOCALES_xulbrowser := \ browser \ extensions/reporter \ extensions/spellcheck \ other-licenses/branding/firefox \ $(NULL) +LOCALES_browser := \ + $(LOCALES_toolkit) \ + $(LOCALES_xulbrowser) \ + $(NULL) + +BOOTSTRAP_xulbrowser := \ + mozilla/browser/config/version.txt \ + mozilla/browser/config/mozconfig \ + $(NULL) + BOOTSTRAP_browser := \ $(BOOTSTRAP_toolkit) \ - mozilla/browser/config/mozconfig \ + $(BOOTSTRAP_xulbrowser) \ $(NULL) MODULES_NS_minimo := \ $(MODULES_NS_toolkit) \ $(NULL) MODULES_minimo := \ $(MODULES_toolkit) \