2012-05-21 15:12:37 +04:00
|
|
|
; This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
; License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
; file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
2012-06-03 11:35:15 +04:00
|
|
|
; Package file for the Firefox build.
|
2009-08-21 21:05:28 +04:00
|
|
|
;
|
2012-01-19 00:25:28 +04:00
|
|
|
; Packaging manifest is used to copy files from dist/bin
|
|
|
|
; to the staging directory.
|
|
|
|
; Some other files are built in the staging directory directly,
|
|
|
|
; so they will be implicitly packaged too.
|
|
|
|
;
|
2009-08-21 21:05:28 +04:00
|
|
|
; File format:
|
|
|
|
;
|
|
|
|
; [] designates a toplevel component. Example: [xpcom]
|
|
|
|
; - in front of a file specifies it to be removed from the destination
|
|
|
|
; * wildcard support to recursively copy the entire directory
|
|
|
|
; ; file comment
|
|
|
|
;
|
|
|
|
|
2014-11-18 20:15:03 +03:00
|
|
|
; Due to Apple Mac OS X packaging requirements, files that are in the same
|
|
|
|
; directory on other platforms must be located in different directories on
|
|
|
|
; Mac OS X. The following defines allow specifying the Mac OS X bundle
|
|
|
|
; location which also work on other platforms.
|
|
|
|
;
|
|
|
|
; @BINPATH@
|
|
|
|
; Equals Contents/MacOS/ on Mac OS X and is the path to the main binary on other
|
|
|
|
; platforms.
|
|
|
|
;
|
|
|
|
; @RESPATH@
|
|
|
|
; Equals Contents/Resources/ on Mac OS X and is equivalent to @BINPATH@ on other
|
|
|
|
; platforms.
|
|
|
|
|
2009-08-21 21:05:28 +04:00
|
|
|
#filter substitution
|
|
|
|
|
2009-08-28 01:22:04 +04:00
|
|
|
#ifdef XP_MACOSX
|
2009-08-21 21:05:28 +04:00
|
|
|
; Mac bundle stuff
|
|
|
|
@APPNAME@/Contents/Info.plist
|
2017-03-27 17:48:35 +03:00
|
|
|
#ifdef MOZ_UPDATER
|
2016-05-25 05:25:23 +03:00
|
|
|
@APPNAME@/Contents/Library/LaunchServices
|
2017-03-27 17:48:35 +03:00
|
|
|
#endif
|
2009-08-21 21:05:28 +04:00
|
|
|
@APPNAME@/Contents/PkgInfo
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/firefox.icns
|
|
|
|
@RESPATH@/document.icns
|
2015-07-22 09:02:28 +03:00
|
|
|
@RESPATH@/@LPROJ_ROOT@.lproj/*
|
2012-06-11 19:10:32 +04:00
|
|
|
#endif
|
2009-08-21 21:05:28 +04:00
|
|
|
|
|
|
|
[@AB_CD@]
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/dictionaries/*
|
2017-09-21 20:55:17 +03:00
|
|
|
@RESPATH@/browser/localization/*
|
2018-07-18 13:32:12 +03:00
|
|
|
@RESPATH@/localization/*
|
2020-03-02 22:54:43 +03:00
|
|
|
#if defined(XP_WIN) || defined(MOZ_WIDGET_GTK)
|
Bug 1231701 - Ship our own variant of EmojiOne on Windows and Linux, r=glandium, r=dolske, r=jfkthame, r=gerv
This patch bundles a color font named "EmojiOne Mozilla", and turn on
the necessary code for including the bundled font, on Linux and Windows.
With that, users of Linux and Windows <=8.0 is able to see color Emoji
on Firefox without support from System.
The font bundled is the v0.2.1 version, generated from the project repo
in
https://github.com/mozilla/emojione-colr
with artwork from the original EmojiOne font and Twemoji,
under CC BY 4.0 license.
Test files, about:license page, and the packager instruction are
modified accordingly.
MozReview-Commit-ID: 2mmxnA0vS3u
2016-06-15 23:58:49 +03:00
|
|
|
@RESPATH@/fonts/*
|
|
|
|
#endif
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/hyphenation/*
|
|
|
|
@RESPATH@/browser/@PREF_DIR@/firefox-l10n.js
|
2015-04-01 13:50:44 +03:00
|
|
|
#ifdef HAVE_MAKENSISU
|
2014-11-21 04:04:32 +03:00
|
|
|
@BINPATH@/uninstall/helper.exe
|
2009-08-28 01:22:04 +04:00
|
|
|
#endif
|
2012-03-18 20:55:57 +04:00
|
|
|
#ifdef MOZ_UPDATER
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/update.locale
|
|
|
|
@RESPATH@/updater.ini
|
2012-03-18 20:55:57 +04:00
|
|
|
#endif
|
2009-08-21 21:05:28 +04:00
|
|
|
|
|
|
|
[xpcom]
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/dependentlibs.list
|
2012-01-27 23:57:41 +04:00
|
|
|
#ifdef MOZ_SHARED_MOZGLUE
|
|
|
|
@BINPATH@/@DLL_PREFIX@mozglue@DLL_SUFFIX@
|
|
|
|
#endif
|
2010-08-14 08:18:05 +04:00
|
|
|
#ifndef MOZ_STATIC_JS
|
2009-08-28 01:22:04 +04:00
|
|
|
@BINPATH@/@DLL_PREFIX@mozjs@DLL_SUFFIX@
|
2010-08-14 08:18:05 +04:00
|
|
|
#endif
|
2016-02-01 18:49:34 +03:00
|
|
|
#ifndef MOZ_SYSTEM_NSPR
|
2013-03-17 10:53:39 +04:00
|
|
|
#ifndef MOZ_FOLD_LIBS
|
2012-01-27 23:57:41 +04:00
|
|
|
@BINPATH@/@DLL_PREFIX@nspr4@DLL_SUFFIX@
|
2009-08-28 01:22:04 +04:00
|
|
|
@BINPATH@/@DLL_PREFIX@plc4@DLL_SUFFIX@
|
|
|
|
@BINPATH@/@DLL_PREFIX@plds4@DLL_SUFFIX@
|
2012-06-12 11:10:09 +04:00
|
|
|
#endif
|
2013-03-17 10:53:39 +04:00
|
|
|
#endif
|
2009-08-28 01:22:04 +04:00
|
|
|
#ifdef XP_MACOSX
|
2014-11-18 20:15:03 +03:00
|
|
|
@BINPATH@/XUL
|
2009-08-21 21:05:28 +04:00
|
|
|
#else
|
2009-08-28 01:22:04 +04:00
|
|
|
@BINPATH@/@DLL_PREFIX@xul@DLL_SUFFIX@
|
2010-07-20 20:30:56 +04:00
|
|
|
#endif
|
2010-07-20 18:19:11 +04:00
|
|
|
#ifdef XP_MACOSX
|
2014-11-18 20:15:03 +03:00
|
|
|
@BINPATH@/@MOZ_CHILD_PROCESS_NAME@.app/
|
|
|
|
@BINPATH@/@DLL_PREFIX@plugin_child_interpose@DLL_SUFFIX@
|
2010-07-20 18:19:11 +04:00
|
|
|
#else
|
2010-04-10 02:40:14 +04:00
|
|
|
@BINPATH@/@MOZ_CHILD_PROCESS_NAME@
|
2009-10-19 21:13:08 +04:00
|
|
|
#endif
|
2019-03-21 04:28:50 +03:00
|
|
|
#ifdef XP_WIN
|
2013-01-05 02:59:05 +04:00
|
|
|
@BINPATH@/plugin-hang-ui@BIN_SUFFIX@
|
2014-06-27 19:24:29 +04:00
|
|
|
#if MOZ_PACKAGE_MSVC_DLLS
|
|
|
|
@BINPATH@/@MSVC_C_RUNTIME_DLL@
|
|
|
|
@BINPATH@/@MSVC_CXX_RUNTIME_DLL@
|
2010-06-02 01:49:29 +04:00
|
|
|
#endif
|
2016-02-02 18:42:04 +03:00
|
|
|
#if MOZ_PACKAGE_WIN_UCRT_DLLS
|
|
|
|
@BINPATH@/api-ms-win-*.dll
|
|
|
|
@BINPATH@/ucrtbase.dll
|
|
|
|
#endif
|
2012-01-27 23:57:41 +04:00
|
|
|
#endif
|
2019-08-21 15:25:42 +03:00
|
|
|
#ifdef MOZ_GTK
|
2014-05-01 15:36:05 +04:00
|
|
|
@BINPATH@/@DLL_PREFIX@mozgtk@DLL_SUFFIX@
|
Bug 1187533 - Change how Gtk+2 plugin-container is started on Gtk+3 builds. r=billm
The current situation looks like this: Firefox launches the plugin-container
with two environment variables set:
LD_LIBRARY_PATH=$FIREFOX_DIR:$LD_LIBRARY_PATH
LD_PRELOAD=$FIREFOX_DIR/libmozgtk2.so:$LD_PRELOAD
libxul.so has a dependency on libmozgtk.so (without "2"), but libmozgtk2.so
has a SONAME of libmozgtk.so, so ld.so recognizes libmozgtk2.so as a
dependency of libxul.so, and uses it instead of the actual libmozgtk.so,
making the plugin-container use Gtk+2 instead of Gtk+3 to load Gtk+2 plugins.
Now, ASan sets things up in shared libraries such that they needs a symbol
from the executable binary. So in the case of plugin-container, the
plugin-container executable itself contains some ASan symbols such as
__asan_init_v3. libmozgtk2.so, OTOH, contains an undefined weak reference to
that symbol, like all other Firefox shared libraries.
Since libmozgtk2.so is LD_PRELOADed, it is loaded _before_ the
plugin-container executable, and __asan_init_v3 can't be resolved.
Disabling ASan for libmozgtk2.so would be a possibility, but the build system
doesn't really know how to do that, and filtering out -fsanitize=address
can be fragile.
The alternative possibility, implemented here, is to change the library
loading strategy, renaming libmozgtk2.so to gtk2/libmozgtk.so, and setting
the following environment variable when Firefox launches the plugin-container:
LD_LIBRARY_PATH=$FIREFOX_DIR/gtk2:$FIREFOX_DIR:$LD_LIBRARY_PATH
2015-07-26 08:05:29 +03:00
|
|
|
@BINPATH@/gtk2/@DLL_PREFIX@mozgtk@DLL_SUFFIX@
|
2017-10-18 15:34:27 +03:00
|
|
|
#ifdef MOZ_WAYLAND
|
|
|
|
@BINPATH@/@DLL_PREFIX@mozwayland@DLL_SUFFIX@
|
|
|
|
#endif
|
2014-05-01 15:36:05 +04:00
|
|
|
#endif
|
2019-12-21 01:26:50 +03:00
|
|
|
#ifdef MOZ_WASM_SANDBOXING_GRAPHITE
|
|
|
|
@BINPATH@/@DLL_PREFIX@graphitewasm@DLL_SUFFIX@
|
|
|
|
#endif
|
2009-08-21 21:05:28 +04:00
|
|
|
|
2016-11-11 11:20:17 +03:00
|
|
|
; We don't have a complete view of which dlls to expect when doing an artifact
|
2019-04-09 02:52:18 +03:00
|
|
|
; build because we haven't run the relevant parts of configure, so we guess
|
|
|
|
; here and trust what came from our source build.
|
2016-11-11 11:20:17 +03:00
|
|
|
#if defined(MOZ_ARTIFACT_BUILDS) && defined(XP_WIN)
|
2019-04-09 02:52:18 +03:00
|
|
|
@BINPATH@/api-ms-win-*.dll
|
|
|
|
@BINPATH@/ucrtbase.dll
|
|
|
|
@BINPATH@/vcruntime*.dll
|
|
|
|
@BINPATH@/msvcp*.dll
|
|
|
|
@BINPATH@/libEGL.dll
|
|
|
|
@BINPATH@/libGLESv2.dll
|
2019-06-14 23:06:06 +03:00
|
|
|
@BINPATH@/d3dcompiler_47.dll
|
2016-11-11 11:20:17 +03:00
|
|
|
#endif
|
|
|
|
|
2009-08-21 21:05:28 +04:00
|
|
|
[browser]
|
|
|
|
; [Base Browser Files]
|
2009-10-25 17:50:28 +03:00
|
|
|
#ifndef XP_UNIX
|
2009-08-28 01:22:04 +04:00
|
|
|
@BINPATH@/@MOZ_APP_NAME@.exe
|
2016-07-01 13:03:00 +03:00
|
|
|
@BINPATH@/firefox.VisualElementsManifest.xml
|
|
|
|
@BINPATH@/browser/VisualElements/VisualElements_150.png
|
|
|
|
@BINPATH@/browser/VisualElements/VisualElements_70.png
|
2009-08-28 01:22:04 +04:00
|
|
|
#else
|
2009-08-21 21:05:28 +04:00
|
|
|
@BINPATH@/@MOZ_APP_NAME@-bin
|
2009-09-08 19:59:59 +04:00
|
|
|
@BINPATH@/@MOZ_APP_NAME@
|
|
|
|
#endif
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/application.ini
|
2012-03-22 11:01:03 +04:00
|
|
|
#ifdef MOZ_UPDATER
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/update-settings.ini
|
2012-03-22 11:01:03 +04:00
|
|
|
#endif
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/platform.ini
|
2013-03-17 10:53:39 +04:00
|
|
|
#ifndef MOZ_FOLD_LIBS
|
2009-12-15 09:52:57 +03:00
|
|
|
@BINPATH@/@DLL_PREFIX@mozsqlite3@DLL_SUFFIX@
|
2012-06-12 11:10:09 +04:00
|
|
|
#endif
|
2015-07-02 07:11:46 +03:00
|
|
|
@BINPATH@/@DLL_PREFIX@lgpllibs@DLL_SUFFIX@
|
2015-11-12 11:58:02 +03:00
|
|
|
#ifdef MOZ_FFVPX
|
|
|
|
@BINPATH@/@DLL_PREFIX@mozavutil@DLL_SUFFIX@
|
|
|
|
@BINPATH@/@DLL_PREFIX@mozavcodec@DLL_SUFFIX@
|
|
|
|
#endif
|
2016-08-22 14:53:38 +03:00
|
|
|
#ifdef XP_WIN
|
|
|
|
#ifdef _AMD64_
|
|
|
|
@BINPATH@/@DLL_PREFIX@qipcap64@DLL_SUFFIX@
|
|
|
|
#else
|
|
|
|
@BINPATH@/@DLL_PREFIX@qipcap@DLL_SUFFIX@
|
|
|
|
#endif
|
|
|
|
#endif
|
2009-08-21 21:05:28 +04:00
|
|
|
|
|
|
|
; [Components]
|
2009-08-28 01:22:04 +04:00
|
|
|
#ifdef ACCESSIBILITY
|
2019-03-21 04:28:50 +03:00
|
|
|
#ifdef XP_WIN
|
2016-07-22 22:27:10 +03:00
|
|
|
@BINPATH@/Accessible.tlb
|
2017-02-15 02:33:48 +03:00
|
|
|
@BINPATH@/AccessibleHandler.dll
|
2009-09-08 22:17:34 +04:00
|
|
|
@BINPATH@/AccessibleMarshal.dll
|
2016-07-19 01:46:14 +03:00
|
|
|
@BINPATH@/IA2Marshal.dll
|
2009-08-28 01:22:04 +04:00
|
|
|
#endif
|
2018-03-06 01:27:29 +03:00
|
|
|
#endif
|
2009-08-28 01:22:04 +04:00
|
|
|
|
2009-08-21 21:05:28 +04:00
|
|
|
; JavaScript components
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/browser/components/BrowserComponents.manifest
|
2019-04-30 19:01:06 +03:00
|
|
|
@RESPATH@/components/EnterprisePolicies.js
|
|
|
|
@RESPATH@/components/EnterprisePoliciesContent.js
|
|
|
|
@RESPATH@/components/EnterprisePolicies.manifest
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/components/toolkitsearch.manifest
|
|
|
|
@RESPATH@/components/extensions.manifest
|
2009-11-03 22:49:23 +03:00
|
|
|
#ifdef MOZ_UPDATER
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/components/nsUpdateService.manifest
|
|
|
|
#endif
|
|
|
|
@RESPATH@/components/ProcessSingleton.manifest
|
2019-01-30 08:06:18 +03:00
|
|
|
@RESPATH@/components/HandlerService.manifest
|
|
|
|
@RESPATH@/components/HandlerService.js
|
2009-08-28 01:22:04 +04:00
|
|
|
#ifdef XP_MACOSX
|
2019-01-22 20:13:33 +03:00
|
|
|
@RESPATH@/browser/components/MacTouchBar.manifest
|
|
|
|
@RESPATH@/browser/components/MacTouchBar.js
|
2009-08-28 01:22:04 +04:00
|
|
|
#endif
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/components/SyncComponents.manifest
|
|
|
|
@RESPATH@/components/servicesComponents.manifest
|
2018-05-24 16:32:40 +03:00
|
|
|
@RESPATH@/components/servicesSettings.manifest
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/components/cryptoComponents.manifest
|
2019-06-05 14:03:57 +03:00
|
|
|
@RESPATH@/components/TelemetryStartup.manifest
|
2019-02-14 12:50:23 +03:00
|
|
|
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/components/Push.manifest
|
2019-02-14 12:50:23 +03:00
|
|
|
|
2019-08-07 17:44:07 +03:00
|
|
|
@RESPATH@/components/antitracking.manifest
|
|
|
|
|
2019-06-08 07:37:31 +03:00
|
|
|
@RESPATH@/components/l10n-registry.manifest
|
|
|
|
@RESPATH@/browser/components/l10n-registry.manifest
|
|
|
|
|
2019-03-08 19:43:29 +03:00
|
|
|
; CDP remote agent
|
|
|
|
#ifdef ENABLE_REMOTE_AGENT
|
2019-04-09 23:33:19 +03:00
|
|
|
@RESPATH@/chrome/remote@JAREXT@
|
|
|
|
@RESPATH@/chrome/remote.manifest
|
2019-03-08 19:43:29 +03:00
|
|
|
#endif
|
|
|
|
|
|
|
|
; Marionette remote control protocol
|
2018-04-18 10:10:21 +03:00
|
|
|
#ifdef ENABLE_MARIONETTE
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/chrome/marionette@JAREXT@
|
|
|
|
@RESPATH@/chrome/marionette.manifest
|
2016-11-15 20:16:23 +03:00
|
|
|
@RESPATH@/components/marionette.manifest
|
|
|
|
@RESPATH@/components/marionette.js
|
2018-04-18 10:10:21 +03:00
|
|
|
#endif
|
2012-02-29 02:01:48 +04:00
|
|
|
|
2016-11-15 11:21:35 +03:00
|
|
|
#if defined(ENABLE_TESTS) && defined(MOZ_DEBUG)
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/components/TestInterfaceJS.js
|
|
|
|
@RESPATH@/components/TestInterfaceJS.manifest
|
2015-05-06 09:42:27 +03:00
|
|
|
@RESPATH@/components/TestInterfaceJSMaplike.js
|
2014-02-15 10:36:43 +04:00
|
|
|
#endif
|
|
|
|
|
2017-12-24 00:39:53 +03:00
|
|
|
#if defined(MOZ_DEBUG) || defined(MOZ_DEV_EDITION) || defined(NIGHTLY_BUILD)
|
2017-06-01 00:00:43 +03:00
|
|
|
@RESPATH@/browser/components/testComponents.manifest
|
|
|
|
@RESPATH@/browser/components/startupRecorder.js
|
|
|
|
#endif
|
|
|
|
|
2016-07-22 22:44:40 +03:00
|
|
|
; [Extensions]
|
|
|
|
@RESPATH@/components/extensions-toolkit.manifest
|
|
|
|
@RESPATH@/browser/components/extensions-browser.manifest
|
|
|
|
|
2009-08-21 21:05:28 +04:00
|
|
|
; Modules
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/browser/modules/*
|
|
|
|
@RESPATH@/modules/*
|
2018-07-30 05:42:46 +03:00
|
|
|
@RESPATH@/browser/actors/*
|
2018-07-30 07:27:32 +03:00
|
|
|
@RESPATH@/actors/*
|
2009-08-21 21:05:28 +04:00
|
|
|
|
2011-02-08 04:11:52 +03:00
|
|
|
; ANGLE GLES-on-D3D rendering library
|
2012-07-11 06:33:03 +04:00
|
|
|
#ifdef MOZ_ANGLE_RENDERER
|
2010-12-04 01:44:01 +03:00
|
|
|
@BINPATH@/libEGL.dll
|
|
|
|
@BINPATH@/libGLESv2.dll
|
2014-05-03 02:31:05 +04:00
|
|
|
|
|
|
|
#ifdef MOZ_D3DCOMPILER_VISTA_DLL
|
|
|
|
@BINPATH@/@MOZ_D3DCOMPILER_VISTA_DLL@
|
|
|
|
#endif
|
|
|
|
#endif # MOZ_ANGLE_RENDERER
|
2010-12-04 01:44:01 +03:00
|
|
|
|
2009-08-21 21:05:28 +04:00
|
|
|
; [Browser Chrome Files]
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/browser/chrome.manifest
|
|
|
|
@RESPATH@/browser/chrome/browser@JAREXT@
|
|
|
|
@RESPATH@/browser/chrome/browser.manifest
|
|
|
|
@RESPATH@/browser/chrome/pdfjs.manifest
|
|
|
|
@RESPATH@/browser/chrome/pdfjs/*
|
|
|
|
@RESPATH@/chrome/toolkit@JAREXT@
|
|
|
|
@RESPATH@/chrome/toolkit.manifest
|
|
|
|
@RESPATH@/chrome/recording.manifest
|
|
|
|
@RESPATH@/chrome/recording/*
|
2013-06-11 21:40:28 +04:00
|
|
|
#ifdef MOZ_GTK
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/browser/chrome/icons/default/default16.png
|
|
|
|
@RESPATH@/browser/chrome/icons/default/default32.png
|
|
|
|
@RESPATH@/browser/chrome/icons/default/default48.png
|
2017-11-10 06:34:36 +03:00
|
|
|
@RESPATH@/browser/chrome/icons/default/default64.png
|
|
|
|
@RESPATH@/browser/chrome/icons/default/default128.png
|
2009-09-08 19:59:59 +04:00
|
|
|
#endif
|
2015-11-29 20:08:35 +03:00
|
|
|
@RESPATH@/browser/features/*
|
2009-08-21 21:05:28 +04:00
|
|
|
|
2018-03-20 17:52:54 +03:00
|
|
|
; [DevTools Startup Files]
|
2018-03-12 16:41:48 +03:00
|
|
|
@RESPATH@/browser/chrome/devtools-startup@JAREXT@
|
|
|
|
@RESPATH@/browser/chrome/devtools-startup.manifest
|
2017-05-18 10:12:22 +03:00
|
|
|
|
2017-07-27 19:16:52 +03:00
|
|
|
; DevTools
|
|
|
|
@RESPATH@/browser/chrome/devtools@JAREXT@
|
|
|
|
@RESPATH@/browser/chrome/devtools.manifest
|
|
|
|
@RESPATH@/browser/@PREF_DIR@/debugger.js
|
|
|
|
|
2009-08-21 21:05:28 +04:00
|
|
|
; shell icons
|
2009-10-25 17:50:28 +03:00
|
|
|
#ifdef XP_UNIX
|
2010-03-01 02:25:33 +03:00
|
|
|
#ifndef XP_MACOSX
|
2013-02-12 00:14:46 +04:00
|
|
|
#ifdef MOZ_UPDATER
|
2013-02-11 17:10:16 +04:00
|
|
|
; updater icon
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/icons/updater.png
|
2009-08-28 01:22:04 +04:00
|
|
|
#endif
|
2010-03-01 02:25:33 +03:00
|
|
|
#endif
|
2013-02-12 00:14:46 +04:00
|
|
|
#endif
|
2009-08-21 21:05:28 +04:00
|
|
|
|
|
|
|
; [Default Preferences]
|
|
|
|
; All the pref files must be part of base to prevent migration bugs
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/browser/@PREF_DIR@/firefox.js
|
|
|
|
@RESPATH@/browser/@PREF_DIR@/firefox-branding.js
|
|
|
|
@RESPATH@/greprefs.js
|
|
|
|
@RESPATH@/defaults/autoconfig/prefcalls.js
|
2015-11-12 02:02:21 +03:00
|
|
|
@RESPATH@/browser/defaults/permissions
|
2019-05-23 12:19:37 +03:00
|
|
|
; Remote Settings JSON dumps
|
2018-05-10 16:27:21 +03:00
|
|
|
@RESPATH@/browser/defaults/settings/blocklists
|
|
|
|
@RESPATH@/browser/defaults/settings/pinning
|
|
|
|
@RESPATH@/browser/defaults/settings/main
|
2019-04-24 17:52:13 +03:00
|
|
|
@RESPATH@/browser/defaults/settings/security-state
|
2012-12-06 02:36:15 +04:00
|
|
|
|
2012-05-31 02:17:54 +04:00
|
|
|
; Warning: changing the path to channel-prefs.js can cause bugs (Bug 756325)
|
2012-12-06 02:36:15 +04:00
|
|
|
; Technically this is an app pref file, but we are keeping it in the original
|
|
|
|
; gre location for now.
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/defaults/pref/channel-prefs.js
|
2012-12-06 02:36:15 +04:00
|
|
|
|
2009-08-21 21:05:28 +04:00
|
|
|
; [Layout Engine Resources]
|
2013-06-04 10:39:51 +04:00
|
|
|
; Style Sheets, Graphics and other Resources used by the layout engine.
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/res/EditorOverride.css
|
|
|
|
@RESPATH@/res/contenteditable.css
|
|
|
|
@RESPATH@/res/designmode.css
|
|
|
|
@RESPATH@/res/table-add-column-after-active.gif
|
|
|
|
@RESPATH@/res/table-add-column-after-hover.gif
|
|
|
|
@RESPATH@/res/table-add-column-after.gif
|
|
|
|
@RESPATH@/res/table-add-column-before-active.gif
|
|
|
|
@RESPATH@/res/table-add-column-before-hover.gif
|
|
|
|
@RESPATH@/res/table-add-column-before.gif
|
|
|
|
@RESPATH@/res/table-add-row-after-active.gif
|
|
|
|
@RESPATH@/res/table-add-row-after-hover.gif
|
|
|
|
@RESPATH@/res/table-add-row-after.gif
|
|
|
|
@RESPATH@/res/table-add-row-before-active.gif
|
|
|
|
@RESPATH@/res/table-add-row-before-hover.gif
|
|
|
|
@RESPATH@/res/table-add-row-before.gif
|
|
|
|
@RESPATH@/res/table-remove-column-active.gif
|
|
|
|
@RESPATH@/res/table-remove-column-hover.gif
|
|
|
|
@RESPATH@/res/table-remove-column.gif
|
|
|
|
@RESPATH@/res/table-remove-row-active.gif
|
|
|
|
@RESPATH@/res/table-remove-row-hover.gif
|
|
|
|
@RESPATH@/res/table-remove-row.gif
|
|
|
|
@RESPATH@/res/grabber.gif
|
2009-08-28 01:22:04 +04:00
|
|
|
#ifdef XP_MACOSX
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/res/cursors/*
|
|
|
|
#endif
|
|
|
|
@RESPATH@/res/fonts/*
|
|
|
|
@RESPATH@/res/dtd/*
|
|
|
|
@RESPATH@/res/language.properties
|
2019-07-24 16:22:22 +03:00
|
|
|
@RESPATH@/res/locale/layout/HtmlForm.properties
|
2019-11-04 19:56:27 +03:00
|
|
|
@RESPATH@/res/locale/layout/MediaDocument.properties
|
|
|
|
@RESPATH@/res/locale/layout/xmlparser.properties
|
|
|
|
@RESPATH@/res/locale/dom/dom.properties
|
2009-08-28 01:22:04 +04:00
|
|
|
#ifdef XP_MACOSX
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/res/MainMenu.nib/
|
2009-08-28 01:22:04 +04:00
|
|
|
#endif
|
2009-08-21 21:05:28 +04:00
|
|
|
|
2017-06-08 12:52:46 +03:00
|
|
|
; Content-accessible resources.
|
|
|
|
@RESPATH@/contentaccessible/*
|
|
|
|
|
2009-08-21 21:05:28 +04:00
|
|
|
; svg
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/res/svg.css
|
2009-08-21 21:05:28 +04:00
|
|
|
|
2018-08-09 10:52:49 +03:00
|
|
|
; [Layout Debugger]
|
2019-01-22 07:01:33 +03:00
|
|
|
#ifdef MOZ_LAYOUT_DEBUGGER
|
2018-08-09 10:52:49 +03:00
|
|
|
@RESPATH@/chrome/layoutdebug@JAREXT@
|
|
|
|
@RESPATH@/chrome/layoutdebug.manifest
|
|
|
|
#endif
|
|
|
|
|
2009-08-21 21:05:28 +04:00
|
|
|
; [Personal Security Manager]
|
|
|
|
;
|
2012-01-19 00:25:28 +04:00
|
|
|
; NSS libraries are signed in the staging directory,
|
|
|
|
; meaning their .chk files are created there directly.
|
|
|
|
;
|
2016-02-01 18:49:34 +03:00
|
|
|
#ifndef MOZ_SYSTEM_NSS
|
2016-04-12 15:40:44 +03:00
|
|
|
#if defined(XP_LINUX) && !defined(ANDROID)
|
|
|
|
@BINPATH@/@DLL_PREFIX@freeblpriv3@DLL_SUFFIX@
|
2019-06-19 12:34:51 +03:00
|
|
|
#elif defined(XP_SOLARIS) && defined(SPARC64)
|
|
|
|
bin/libfreebl_64fpu_3.so
|
|
|
|
bin/libfreebl_64int_3.so
|
2016-04-12 15:40:44 +03:00
|
|
|
#else
|
2012-01-19 00:25:28 +04:00
|
|
|
@BINPATH@/@DLL_PREFIX@freebl3@DLL_SUFFIX@
|
2016-04-12 15:40:44 +03:00
|
|
|
#endif
|
2009-08-28 01:22:04 +04:00
|
|
|
@BINPATH@/@DLL_PREFIX@nss3@DLL_SUFFIX@
|
2012-01-19 00:25:28 +04:00
|
|
|
@BINPATH@/@DLL_PREFIX@nssckbi@DLL_SUFFIX@
|
2013-03-17 10:53:39 +04:00
|
|
|
#ifndef MOZ_FOLD_LIBS
|
2009-08-28 01:22:04 +04:00
|
|
|
@BINPATH@/@DLL_PREFIX@nssutil3@DLL_SUFFIX@
|
|
|
|
@BINPATH@/@DLL_PREFIX@smime3@DLL_SUFFIX@
|
|
|
|
@BINPATH@/@DLL_PREFIX@ssl3@DLL_SUFFIX@
|
2012-06-12 11:10:09 +04:00
|
|
|
#endif
|
2013-03-17 10:53:39 +04:00
|
|
|
@BINPATH@/@DLL_PREFIX@softokn3@DLL_SUFFIX@
|
|
|
|
#endif
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/chrome/pippki@JAREXT@
|
|
|
|
@RESPATH@/chrome/pippki.manifest
|
2009-08-21 21:05:28 +04:00
|
|
|
|
2020-02-12 20:08:48 +03:00
|
|
|
; preprocessor.py doesn't handle parentheses, so while the following could be
|
|
|
|
; expressed in a single line, it's more clear to break them up.
|
|
|
|
#if defined(XP_WIN) || defined(XP_MACOSX)
|
|
|
|
#if !defined(_ARM64_)
|
2019-09-18 20:27:50 +03:00
|
|
|
@BINPATH@/@DLL_PREFIX@osclientcerts@DLL_SUFFIX@
|
|
|
|
#endif
|
2020-02-12 20:08:48 +03:00
|
|
|
#endif
|
2019-09-18 20:27:50 +03:00
|
|
|
|
2014-07-17 03:01:34 +04:00
|
|
|
; For process sandboxing
|
2016-10-27 01:57:24 +03:00
|
|
|
#if defined(MOZ_SANDBOX)
|
|
|
|
#if defined(XP_LINUX)
|
|
|
|
@BINPATH@/@DLL_PREFIX@mozsandbox@DLL_SUFFIX@
|
|
|
|
#endif
|
2017-05-31 22:34:13 +03:00
|
|
|
#endif
|
2016-10-27 01:57:24 +03:00
|
|
|
|
2009-08-21 21:05:28 +04:00
|
|
|
; [Updater]
|
|
|
|
;
|
2012-03-18 20:55:57 +04:00
|
|
|
#ifdef MOZ_UPDATER
|
2009-08-28 01:22:04 +04:00
|
|
|
#ifdef XP_MACOSX
|
2014-11-18 20:15:03 +03:00
|
|
|
@BINPATH@/updater.app/
|
2009-08-28 01:22:04 +04:00
|
|
|
#else
|
|
|
|
@BINPATH@/updater@BIN_SUFFIX@
|
|
|
|
#endif
|
2012-03-18 20:55:57 +04:00
|
|
|
#endif
|
2009-08-21 21:05:28 +04:00
|
|
|
|
2012-01-05 08:19:14 +04:00
|
|
|
; [MaintenanceService]
|
|
|
|
;
|
|
|
|
#ifdef MOZ_MAINTENANCE_SERVICE
|
|
|
|
@BINPATH@/maintenanceservice.exe
|
|
|
|
@BINPATH@/maintenanceservice_installer.exe
|
|
|
|
#endif
|
|
|
|
|
2020-03-12 01:33:12 +03:00
|
|
|
; [Background Update Agent]
|
|
|
|
#ifdef MOZ_UPDATE_AGENT
|
|
|
|
@BINPATH@/updateagent@BIN_SUFFIX@
|
|
|
|
#endif
|
|
|
|
|
2009-08-21 21:05:28 +04:00
|
|
|
; [Crash Reporter]
|
|
|
|
;
|
2009-08-28 01:22:04 +04:00
|
|
|
#ifdef MOZ_CRASHREPORTER
|
|
|
|
#ifdef XP_MACOSX
|
2014-11-18 20:15:03 +03:00
|
|
|
@BINPATH@/crashreporter.app/
|
2009-08-28 01:22:04 +04:00
|
|
|
#else
|
|
|
|
@BINPATH@/crashreporter@BIN_SUFFIX@
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/crashreporter.ini
|
2009-08-28 01:22:04 +04:00
|
|
|
#ifdef XP_UNIX
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/Throbber-small.gif
|
2009-08-28 01:22:04 +04:00
|
|
|
#endif
|
|
|
|
#endif
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/browser/crashreporter-override.ini
|
2012-07-02 22:55:12 +04:00
|
|
|
#ifdef MOZ_CRASHREPORTER_INJECTOR
|
|
|
|
@BINPATH@/breakpadinjector.dll
|
|
|
|
#endif
|
2009-08-28 01:22:04 +04:00
|
|
|
#endif
|
|
|
|
|
2019-11-15 00:11:59 +03:00
|
|
|
; [ minidump-analyzer ]
|
|
|
|
;
|
|
|
|
#ifdef MOZ_CRASHREPORTER
|
|
|
|
@BINPATH@/minidump-analyzer@BIN_SUFFIX@
|
|
|
|
#endif
|
|
|
|
|
2017-01-16 19:39:22 +03:00
|
|
|
; [ Ping Sender ]
|
|
|
|
;
|
|
|
|
@BINPATH@/pingsender@BIN_SUFFIX@
|
|
|
|
|
2014-11-10 15:58:14 +03:00
|
|
|
; Shutdown Terminator
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/components/terminator.manifest
|
2013-10-02 21:27:07 +04:00
|
|
|
|
2017-03-24 11:58:27 +03:00
|
|
|
#ifdef LLVM_SYMBOLIZER
|
|
|
|
@BINPATH@/@LLVM_SYMBOLIZER@
|
2018-05-03 22:53:53 +03:00
|
|
|
; On Windows, llvm-symbolizer depends on the MS DIA library.
|
|
|
|
#ifdef WIN_DIA_SDK_BIN_DIR
|
|
|
|
@BINPATH@/msdia140.dll
|
|
|
|
#endif
|
2014-10-17 05:40:00 +04:00
|
|
|
#endif
|
2014-12-23 00:05:23 +03:00
|
|
|
|
2017-03-24 11:58:27 +03:00
|
|
|
#ifdef MOZ_CLANG_RT_ASAN_LIB
|
|
|
|
@BINPATH@/@MOZ_CLANG_RT_ASAN_LIB@
|
2014-05-26 13:29:56 +04:00
|
|
|
#endif
|
2014-11-12 01:33:28 +03:00
|
|
|
|
|
|
|
|
|
|
|
; media
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/gmp-clearkey/0.1/@DLL_PREFIX@clearkey@DLL_SUFFIX@
|
2016-12-22 01:28:40 +03:00
|
|
|
@RESPATH@/gmp-clearkey/0.1/manifest.json
|
2015-06-17 01:49:26 +03:00
|
|
|
|
2017-06-22 19:49:03 +03:00
|
|
|
#ifdef MOZ_DMD
|
|
|
|
; DMD
|
|
|
|
@RESPATH@/dmd.py
|
2020-03-05 03:24:23 +03:00
|
|
|
@RESPATH@/fix_stacks.py
|
2017-06-22 19:49:03 +03:00
|
|
|
@RESPATH@/fix_stack_using_bpsyms.py
|
|
|
|
#ifdef XP_MACOSX
|
|
|
|
@RESPATH@/fix_macosx_stack.py
|
|
|
|
#endif
|
|
|
|
#ifdef XP_LINUX
|
|
|
|
@RESPATH@/fix_linux_stack.py
|
|
|
|
#endif
|
2015-07-15 10:31:53 +03:00
|
|
|
#endif
|
2017-08-01 23:22:40 +03:00
|
|
|
|
2017-10-23 18:04:24 +03:00
|
|
|
#ifdef PKG_LOCALE_MANIFEST
|
|
|
|
#include @PKG_LOCALE_MANIFEST@
|
|
|
|
#endif
|
2019-03-05 11:41:04 +03:00
|
|
|
|
|
|
|
#ifdef MOZ_EME_WIN32_ARTIFACT
|
|
|
|
i686/plugin-container.exe
|
|
|
|
i686/xul.dll
|
|
|
|
i686/nss3.dll
|
|
|
|
i686/mozglue.dll
|
|
|
|
i686/lgpllibs.dll
|
|
|
|
i686/msvcp140.dll
|
|
|
|
i686/vcruntime140.dll
|
|
|
|
i686/gmp-clearkey/0.1/clearkey.dll
|
|
|
|
[eme destdir="i686"]
|
|
|
|
; We assume the file we generate locally is the same as what was in the win32
|
|
|
|
; build, which, practically speaking, is the case.
|
|
|
|
@BINPATH@/gmp-clearkey/0.1/manifest.json
|
|
|
|
#endif
|
2020-03-16 23:16:25 +03:00
|
|
|
|
|
|
|
#if defined(XP_WIN) && defined(MOZ_DEFAULT_BROWSER_AGENT)
|
|
|
|
@BINPATH@/default-browser-agent@BIN_SUFFIX@
|
|
|
|
#endif
|