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/*
|
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
|
|
|
#if defined(XP_WIN) || defined(XP_LINUX)
|
|
|
|
@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
|
2013-12-17 07:27:10 +04:00
|
|
|
#ifdef MOZ_DMD
|
|
|
|
@BINPATH@/@DLL_PREFIX@dmd@DLL_SUFFIX@
|
|
|
|
#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
|
2011-04-22 03:14:59 +04:00
|
|
|
#ifdef XP_WIN32
|
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
|
2016-07-21 01:13:17 +03:00
|
|
|
#ifdef MOZ_ICU_DATA_ARCHIVE
|
2016-04-05 17:09:12 +03:00
|
|
|
@RESPATH@/@ICU_DATA_FILE@
|
2013-12-08 22:03:10 +04:00
|
|
|
#endif
|
2014-05-01 15:36:05 +04:00
|
|
|
#ifdef MOZ_GTK3
|
|
|
|
@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@
|
2014-05-01 15:36:05 +04:00
|
|
|
#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
|
|
|
|
; build because we haven't run all of configure, so we trust what's in
|
|
|
|
; dist/bin, because everything there was extracted from our original build's
|
|
|
|
; package.
|
|
|
|
#if defined(MOZ_ARTIFACT_BUILDS) && defined(XP_WIN)
|
|
|
|
@BINPATH@/*.dll
|
|
|
|
#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
|
2016-02-01 18:49:34 +03:00
|
|
|
#ifndef MOZ_SYSTEM_SQLITE
|
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
|
2013-03-17 10:53:39 +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
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/browser/blocklist.xml
|
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]
|
2016-08-18 01:02:31 +03:00
|
|
|
#ifdef MOZ_ARTIFACT_BUILDS
|
|
|
|
@RESPATH@/components/prebuilt-interfaces.manifest
|
|
|
|
@RESPATH@/components/interfaces.xpt
|
|
|
|
@RESPATH@/browser/components/prebuilt-interfaces.manifest
|
|
|
|
@RESPATH@/browser/components/interfaces.xpt
|
|
|
|
#endif
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/components/alerts.xpt
|
2009-08-28 01:22:04 +04:00
|
|
|
#ifdef ACCESSIBILITY
|
|
|
|
#ifdef XP_WIN32
|
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
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/components/accessibility.xpt
|
|
|
|
#endif
|
|
|
|
@RESPATH@/components/appshell.xpt
|
|
|
|
@RESPATH@/components/appstartup.xpt
|
|
|
|
@RESPATH@/components/autocomplete.xpt
|
|
|
|
@RESPATH@/components/autoconfig.xpt
|
2014-11-21 13:56:27 +03:00
|
|
|
@RESPATH@/components/browser-element.xpt
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/browser/components/browsercompsbase.xpt
|
|
|
|
@RESPATH@/browser/components/browser-feeds.xpt
|
|
|
|
@RESPATH@/components/caps.xpt
|
|
|
|
@RESPATH@/components/chrome.xpt
|
2017-07-14 11:58:56 +03:00
|
|
|
#ifdef MOZ_CODE_COVERAGE
|
|
|
|
@RESPATH@/components/code-coverage.xpt
|
|
|
|
#endif
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/components/commandhandler.xpt
|
|
|
|
@RESPATH@/components/commandlines.xpt
|
|
|
|
@RESPATH@/components/composer.xpt
|
|
|
|
@RESPATH@/components/content_events.xpt
|
|
|
|
@RESPATH@/components/content_html.xpt
|
|
|
|
@RESPATH@/components/content_geckomediaplugins.xpt
|
2013-12-20 01:16:50 +04:00
|
|
|
#ifdef MOZ_WEBRTC
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/components/content_webrtc.xpt
|
|
|
|
#endif
|
|
|
|
@RESPATH@/components/content_xslt.xpt
|
|
|
|
@RESPATH@/components/directory.xpt
|
|
|
|
@RESPATH@/components/docshell.xpt
|
|
|
|
@RESPATH@/components/dom.xpt
|
|
|
|
@RESPATH@/components/dom_base.xpt
|
2017-01-27 18:42:47 +03:00
|
|
|
@RESPATH@/components/dom_bindings.xpt
|
2016-12-01 17:12:42 +03:00
|
|
|
@RESPATH@/components/dom_file.xpt
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/components/dom_system.xpt
|
|
|
|
@RESPATH@/components/dom_canvas.xpt
|
|
|
|
@RESPATH@/components/dom_core.xpt
|
|
|
|
@RESPATH@/components/dom_css.xpt
|
|
|
|
@RESPATH@/components/dom_events.xpt
|
|
|
|
@RESPATH@/components/dom_geolocation.xpt
|
|
|
|
@RESPATH@/components/dom_media.xpt
|
|
|
|
@RESPATH@/components/dom_network.xpt
|
|
|
|
@RESPATH@/components/dom_notification.xpt
|
|
|
|
@RESPATH@/components/dom_html.xpt
|
|
|
|
@RESPATH@/components/dom_offline.xpt
|
2017-05-25 20:50:32 +03:00
|
|
|
@RESPATH@/components/dom_payments.xpt
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/components/dom_power.xpt
|
2015-04-21 21:10:50 +03:00
|
|
|
@RESPATH@/components/dom_push.xpt
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/components/dom_quota.xpt
|
|
|
|
@RESPATH@/components/dom_range.xpt
|
|
|
|
@RESPATH@/components/dom_security.xpt
|
|
|
|
@RESPATH@/components/dom_sidebar.xpt
|
|
|
|
@RESPATH@/components/dom_storage.xpt
|
|
|
|
@RESPATH@/components/dom_stylesheets.xpt
|
|
|
|
@RESPATH@/components/dom_traversal.xpt
|
2013-03-28 01:08:17 +04:00
|
|
|
#ifdef MOZ_WEBSPEECH
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/components/dom_webspeechrecognition.xpt
|
2013-03-28 01:08:17 +04:00
|
|
|
#endif
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/components/dom_workers.xpt
|
|
|
|
@RESPATH@/components/dom_xbl.xpt
|
2016-06-27 20:13:40 +03:00
|
|
|
@RESPATH@/components/dom_xhr.xpt
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/components/dom_xpath.xpt
|
|
|
|
@RESPATH@/components/dom_xul.xpt
|
2014-08-27 06:28:03 +04:00
|
|
|
@RESPATH@/components/dom_presentation.xpt
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/components/downloads.xpt
|
|
|
|
@RESPATH@/components/editor.xpt
|
|
|
|
@RESPATH@/components/extensions.xpt
|
|
|
|
@RESPATH@/components/exthandler.xpt
|
|
|
|
@RESPATH@/components/fastfind.xpt
|
|
|
|
@RESPATH@/components/feeds.xpt
|
2013-06-11 21:40:28 +04:00
|
|
|
#ifdef MOZ_GTK
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/components/filepicker.xpt
|
|
|
|
#endif
|
|
|
|
@RESPATH@/components/gfx.xpt
|
|
|
|
@RESPATH@/components/html5.xpt
|
|
|
|
@RESPATH@/components/htmlparser.xpt
|
|
|
|
@RESPATH@/components/imglib2.xpt
|
|
|
|
@RESPATH@/components/inspector.xpt
|
|
|
|
@RESPATH@/components/intl.xpt
|
|
|
|
@RESPATH@/components/jar.xpt
|
|
|
|
@RESPATH@/components/jsdebugger.xpt
|
|
|
|
@RESPATH@/components/jsdownloads.xpt
|
2015-10-07 02:01:24 +03:00
|
|
|
@RESPATH@/browser/components/jsinspector.xpt
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/components/layout_base.xpt
|
2009-08-28 01:22:04 +04:00
|
|
|
#ifdef NS_PRINTING
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/components/layout_printing.xpt
|
|
|
|
#endif
|
|
|
|
@RESPATH@/components/layout_xul_tree.xpt
|
|
|
|
@RESPATH@/components/layout_xul.xpt
|
|
|
|
@RESPATH@/components/locale.xpt
|
|
|
|
@RESPATH@/browser/components/migration.xpt
|
|
|
|
@RESPATH@/components/mimetype.xpt
|
|
|
|
@RESPATH@/components/mozfind.xpt
|
2016-09-03 22:10:51 +03:00
|
|
|
@RESPATH@/components/mozintl.xpt
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/components/necko_about.xpt
|
|
|
|
@RESPATH@/components/necko_cache.xpt
|
|
|
|
@RESPATH@/components/necko_cache2.xpt
|
|
|
|
@RESPATH@/components/necko_cookie.xpt
|
|
|
|
@RESPATH@/components/necko_dns.xpt
|
|
|
|
@RESPATH@/components/necko_file.xpt
|
|
|
|
@RESPATH@/components/necko_ftp.xpt
|
|
|
|
@RESPATH@/components/necko_http.xpt
|
2015-05-21 06:06:00 +03:00
|
|
|
@RESPATH@/components/necko_mdns.xpt
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/components/necko_res.xpt
|
|
|
|
@RESPATH@/components/necko_socket.xpt
|
|
|
|
@RESPATH@/components/necko_strconv.xpt
|
|
|
|
@RESPATH@/components/necko_viewsource.xpt
|
|
|
|
@RESPATH@/components/necko_websocket.xpt
|
2012-04-11 15:58:27 +04:00
|
|
|
#ifdef NECKO_WIFI
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/components/necko_wifi.xpt
|
2012-04-11 15:58:27 +04:00
|
|
|
#endif
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/components/necko_wyciwyg.xpt
|
|
|
|
@RESPATH@/components/necko.xpt
|
|
|
|
@RESPATH@/components/loginmgr.xpt
|
|
|
|
@RESPATH@/components/parentalcontrols.xpt
|
2012-10-07 09:34:30 +04:00
|
|
|
#ifdef MOZ_WEBRTC
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/components/peerconnection.xpt
|
2012-10-07 09:34:30 +04:00
|
|
|
#endif
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/components/places.xpt
|
|
|
|
@RESPATH@/components/plugin.xpt
|
|
|
|
@RESPATH@/components/pref.xpt
|
|
|
|
@RESPATH@/components/prefetch.xpt
|
2017-01-24 06:15:12 +03:00
|
|
|
#ifdef MOZ_GECKO_PROFILER
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/components/profiler.xpt
|
2012-04-09 11:32:57 +04:00
|
|
|
#endif
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/components/rdf.xpt
|
2017-10-23 11:18:52 +03:00
|
|
|
@RESPATH@/components/reputationservice.xpt
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/components/satchel.xpt
|
|
|
|
@RESPATH@/components/saxparser.xpt
|
|
|
|
@RESPATH@/browser/components/sessionstore.xpt
|
|
|
|
@RESPATH@/components/services-crypto-component.xpt
|
|
|
|
@RESPATH@/components/captivedetect.xpt
|
|
|
|
@RESPATH@/browser/components/shellservice.xpt
|
|
|
|
@RESPATH@/components/shistory.xpt
|
|
|
|
@RESPATH@/components/spellchecker.xpt
|
|
|
|
@RESPATH@/components/storage.xpt
|
2017-05-12 20:13:25 +03:00
|
|
|
#ifdef ENABLE_MARIONETTE
|
|
|
|
@RESPATH@/components/remote.xpt
|
|
|
|
#endif
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/components/toolkit_asyncshutdown.xpt
|
|
|
|
@RESPATH@/components/toolkit_filewatcher.xpt
|
|
|
|
@RESPATH@/components/toolkit_finalizationwitness.xpt
|
|
|
|
@RESPATH@/components/toolkit_osfile.xpt
|
2016-01-30 11:07:38 +03:00
|
|
|
@RESPATH@/components/toolkit_securityreporter.xpt
|
2015-03-31 13:40:59 +03:00
|
|
|
@RESPATH@/components/toolkit_perfmonitoring.xpt
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/components/toolkit_xulstore.xpt
|
|
|
|
@RESPATH@/components/toolkitprofile.xpt
|
2009-08-28 01:22:04 +04:00
|
|
|
#ifdef MOZ_ENABLE_XREMOTE
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/components/toolkitremote.xpt
|
|
|
|
#endif
|
|
|
|
@RESPATH@/components/txtsvc.xpt
|
|
|
|
@RESPATH@/components/txmgr.xpt
|
|
|
|
@RESPATH@/components/uconv.xpt
|
|
|
|
@RESPATH@/components/update.xpt
|
|
|
|
@RESPATH@/components/uriloader.xpt
|
|
|
|
@RESPATH@/components/urlformatter.xpt
|
|
|
|
@RESPATH@/components/webBrowser_core.xpt
|
|
|
|
@RESPATH@/components/webbrowserpersist.xpt
|
2017-04-19 01:50:53 +03:00
|
|
|
@RESPATH@/components/webextensions.xpt
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/components/widget.xpt
|
2010-02-22 08:55:51 +03:00
|
|
|
#ifdef XP_MACOSX
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/components/widget_cocoa.xpt
|
|
|
|
#endif
|
2017-01-10 21:34:38 +03:00
|
|
|
@RESPATH@/components/windowcreator.xpt
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/components/windowds.xpt
|
|
|
|
@RESPATH@/components/windowwatcher.xpt
|
|
|
|
@RESPATH@/components/xpcom_base.xpt
|
|
|
|
@RESPATH@/components/xpcom_system.xpt
|
|
|
|
@RESPATH@/components/xpcom_components.xpt
|
|
|
|
@RESPATH@/components/xpcom_ds.xpt
|
|
|
|
@RESPATH@/components/xpcom_io.xpt
|
|
|
|
@RESPATH@/components/xpcom_threads.xpt
|
|
|
|
@RESPATH@/components/xpcom_xpti.xpt
|
|
|
|
@RESPATH@/components/xpconnect.xpt
|
|
|
|
@RESPATH@/components/xulapp.xpt
|
|
|
|
@RESPATH@/components/xul.xpt
|
|
|
|
@RESPATH@/components/xultmpl.xpt
|
|
|
|
@RESPATH@/components/zipwriter.xpt
|
|
|
|
@RESPATH@/components/telemetry.xpt
|
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@/components/ConsoleAPI.manifest
|
|
|
|
@RESPATH@/components/ConsoleAPIStorage.js
|
|
|
|
@RESPATH@/components/BrowserElementParent.manifest
|
|
|
|
@RESPATH@/components/BrowserElementParent.js
|
|
|
|
@RESPATH@/components/FeedProcessor.manifest
|
|
|
|
@RESPATH@/components/FeedProcessor.js
|
2017-05-16 07:11:12 +03:00
|
|
|
@RESPATH@/components/UAOverridesBootstrapper.js
|
|
|
|
@RESPATH@/components/UAOverridesBootstrapper.manifest
|
2016-08-16 22:51:18 +03:00
|
|
|
@RESPATH@/components/WellKnownOpportunisticUtils.js
|
|
|
|
@RESPATH@/components/WellKnownOpportunisticUtils.manifest
|
2016-08-17 07:21:53 +03:00
|
|
|
#ifndef XP_MACOSX
|
2016-08-15 18:47:17 +03:00
|
|
|
; OSX uses native platform impl. Windows, Linux, and Android uses fallback JS impl.
|
|
|
|
@BINPATH@/components/nsDNSServiceDiscovery.manifest
|
|
|
|
@BINPATH@/components/nsDNSServiceDiscovery.js
|
|
|
|
#endif
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/browser/components/BrowserFeeds.manifest
|
|
|
|
@RESPATH@/browser/components/FeedConverter.js
|
|
|
|
@RESPATH@/browser/components/FeedWriter.js
|
|
|
|
@RESPATH@/browser/components/WebContentConverter.js
|
|
|
|
@RESPATH@/browser/components/BrowserComponents.manifest
|
|
|
|
@RESPATH@/browser/components/nsBrowserContentHandler.js
|
|
|
|
@RESPATH@/browser/components/nsBrowserGlue.js
|
|
|
|
@RESPATH@/browser/components/nsSetDefaultBrowser.manifest
|
|
|
|
@RESPATH@/browser/components/nsSetDefaultBrowser.js
|
2016-02-24 13:06:42 +03:00
|
|
|
@RESPATH@/browser/components/devtools-startup.manifest
|
|
|
|
@RESPATH@/browser/components/devtools-startup.js
|
2017-05-26 11:09:42 +03:00
|
|
|
@RESPATH@/browser/components/aboutdebugging-registration.js
|
|
|
|
@RESPATH@/browser/components/aboutdebugging.manifest
|
2017-10-04 16:16:37 +03:00
|
|
|
@RESPATH@/browser/components/aboutdevtools-registration.js
|
|
|
|
@RESPATH@/browser/components/aboutdevtools.manifest
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/browser/components/Experiments.manifest
|
|
|
|
@RESPATH@/browser/components/ExperimentsService.js
|
2016-01-12 04:30:13 +03:00
|
|
|
@RESPATH@/browser/components/browser-newtab.xpt
|
|
|
|
@RESPATH@/browser/components/aboutNewTabService.js
|
|
|
|
@RESPATH@/browser/components/NewTabComponents.manifest
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/components/Downloads.manifest
|
|
|
|
@RESPATH@/components/DownloadLegacy.js
|
2017-06-05 17:04:06 +03:00
|
|
|
@RESPATH@/components/thumbnails.xpt
|
|
|
|
@RESPATH@/components/PageThumbsComponents.manifest
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/components/crashmonitor.manifest
|
|
|
|
@RESPATH@/components/nsCrashMonitor.js
|
|
|
|
@RESPATH@/components/toolkitsearch.manifest
|
|
|
|
@RESPATH@/components/nsSearchService.js
|
|
|
|
@RESPATH@/components/nsSearchSuggestions.js
|
2015-02-02 23:15:26 +03:00
|
|
|
@RESPATH@/components/nsSidebar.js
|
2017-07-19 04:12:27 +03:00
|
|
|
#ifdef NIGHTLY_BUILD
|
2017-07-15 00:28:50 +03:00
|
|
|
@RESPATH@/components/payments.manifest
|
2017-08-07 06:13:04 +03:00
|
|
|
@RESPATH@/components/paymentUIService.js
|
2017-07-19 04:12:27 +03:00
|
|
|
#endif
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/components/passwordmgr.manifest
|
|
|
|
@RESPATH@/components/nsLoginInfo.js
|
|
|
|
@RESPATH@/components/nsLoginManager.js
|
|
|
|
@RESPATH@/components/nsLoginManagerPrompter.js
|
|
|
|
@RESPATH@/components/storage-json.js
|
|
|
|
@RESPATH@/components/crypto-SDR.js
|
2016-04-12 23:50:47 +03:00
|
|
|
@RESPATH@/components/TooltipTextProvider.js
|
|
|
|
@RESPATH@/components/TooltipTextProvider.manifest
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/components/webvtt.xpt
|
|
|
|
@RESPATH@/components/WebVTT.manifest
|
|
|
|
@RESPATH@/components/WebVTTParserWrapper.js
|
2013-06-11 21:40:28 +04:00
|
|
|
#ifdef MOZ_GTK
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/components/nsFilePicker.manifest
|
|
|
|
@RESPATH@/components/nsFilePicker.js
|
|
|
|
#endif
|
|
|
|
@RESPATH@/components/nsHelperAppDlg.manifest
|
|
|
|
@RESPATH@/components/nsHelperAppDlg.js
|
|
|
|
@RESPATH@/components/NetworkGeolocationProvider.manifest
|
|
|
|
@RESPATH@/components/NetworkGeolocationProvider.js
|
|
|
|
@RESPATH@/components/extensions.manifest
|
2016-11-28 21:33:57 +03:00
|
|
|
@RESPATH@/components/EditorUtils.manifest
|
|
|
|
@RESPATH@/components/EditorUtils.js
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/components/addonManager.js
|
|
|
|
@RESPATH@/components/amContentHandler.js
|
|
|
|
@RESPATH@/components/amInstallTrigger.js
|
2016-03-10 20:50:07 +03:00
|
|
|
@RESPATH@/components/amWebAPI.js
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/components/nsBlocklistService.js
|
2015-05-01 18:07:19 +03:00
|
|
|
@RESPATH@/components/nsBlocklistServiceContent.js
|
2009-11-03 22:49:23 +03:00
|
|
|
#ifdef MOZ_UPDATER
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/components/nsUpdateService.manifest
|
|
|
|
@RESPATH@/components/nsUpdateService.js
|
|
|
|
@RESPATH@/components/nsUpdateServiceStub.js
|
|
|
|
#endif
|
|
|
|
@RESPATH@/components/nsUpdateTimerManager.manifest
|
|
|
|
@RESPATH@/components/nsUpdateTimerManager.js
|
|
|
|
@RESPATH@/components/addoncompat.manifest
|
|
|
|
@RESPATH@/components/multiprocessShims.js
|
2015-06-08 10:28:48 +03:00
|
|
|
@RESPATH@/components/defaultShims.js
|
2015-07-08 23:19:12 +03:00
|
|
|
@RESPATH@/components/utils.manifest
|
|
|
|
@RESPATH@/components/simpleServices.js
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/components/pluginGlue.manifest
|
|
|
|
@RESPATH@/components/ProcessSingleton.manifest
|
|
|
|
@RESPATH@/components/MainProcessSingleton.js
|
|
|
|
@RESPATH@/components/ContentProcessSingleton.js
|
|
|
|
@RESPATH@/browser/components/nsSessionStore.manifest
|
|
|
|
@RESPATH@/browser/components/nsSessionStartup.js
|
|
|
|
@RESPATH@/browser/components/nsSessionStore.js
|
|
|
|
@RESPATH@/components/nsURLFormatter.manifest
|
|
|
|
@RESPATH@/components/nsURLFormatter.js
|
|
|
|
@RESPATH@/components/txEXSLTRegExFunctions.manifest
|
|
|
|
@RESPATH@/components/txEXSLTRegExFunctions.js
|
|
|
|
@RESPATH@/components/toolkitplaces.manifest
|
|
|
|
@RESPATH@/components/nsLivemarkService.js
|
|
|
|
@RESPATH@/components/nsTaggingService.js
|
|
|
|
@RESPATH@/components/UnifiedComplete.js
|
|
|
|
@RESPATH@/components/nsPlacesExpiration.js
|
2016-06-30 19:17:44 +03:00
|
|
|
@RESPATH@/components/PageIconProtocolHandler.js
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/components/PlacesCategoriesStarter.js
|
|
|
|
@RESPATH@/components/ColorAnalyzer.js
|
2017-06-05 17:04:06 +03:00
|
|
|
@RESPATH@/components/PageThumbsStorageService.js
|
2017-01-19 01:10:46 +03:00
|
|
|
@RESPATH@/components/mozProtocolHandler.js
|
|
|
|
@RESPATH@/components/mozProtocolHandler.manifest
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/components/nsDefaultCLH.manifest
|
|
|
|
@RESPATH@/components/nsDefaultCLH.js
|
2017-08-11 17:29:55 +03:00
|
|
|
@RESPATH@/components/ContentPrefService2.manifest
|
|
|
|
@RESPATH@/components/ContentPrefService2.js
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/components/nsContentDispatchChooser.manifest
|
|
|
|
@RESPATH@/components/nsContentDispatchChooser.js
|
2017-03-10 12:41:33 +03:00
|
|
|
@RESPATH@/components/nsHandlerService-json.manifest
|
|
|
|
@RESPATH@/components/nsHandlerService-json.js
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/components/nsHandlerService.manifest
|
|
|
|
@RESPATH@/components/nsHandlerService.js
|
|
|
|
@RESPATH@/components/nsWebHandlerApp.manifest
|
|
|
|
@RESPATH@/components/nsWebHandlerApp.js
|
|
|
|
@RESPATH@/components/satchel.manifest
|
|
|
|
@RESPATH@/components/nsFormAutoComplete.js
|
|
|
|
@RESPATH@/components/FormHistoryStartup.js
|
|
|
|
@RESPATH@/components/nsInputListAutoComplete.js
|
|
|
|
@RESPATH@/components/contentAreaDropListener.manifest
|
|
|
|
@RESPATH@/components/contentAreaDropListener.js
|
|
|
|
@RESPATH@/browser/components/BrowserProfileMigrators.manifest
|
|
|
|
@RESPATH@/browser/components/ProfileMigrator.js
|
|
|
|
@RESPATH@/browser/components/ChromeProfileMigrator.js
|
|
|
|
@RESPATH@/browser/components/FirefoxProfileMigrator.js
|
2012-04-17 00:42:13 +04:00
|
|
|
#ifdef XP_WIN
|
2015-05-13 13:00:55 +03:00
|
|
|
@RESPATH@/browser/components/360seProfileMigrator.js
|
2015-08-19 19:41:30 +03:00
|
|
|
@RESPATH@/browser/components/EdgeProfileMigrator.js
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/browser/components/IEProfileMigrator.js
|
2012-04-17 00:42:13 +04:00
|
|
|
#endif
|
2009-08-28 01:22:04 +04:00
|
|
|
#ifdef XP_MACOSX
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/browser/components/SafariProfileMigrator.js
|
2009-08-28 01:22:04 +04:00
|
|
|
#endif
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/components/nsINIProcessor.manifest
|
|
|
|
@RESPATH@/components/nsINIProcessor.js
|
|
|
|
@RESPATH@/components/nsPrompter.manifest
|
|
|
|
@RESPATH@/components/nsPrompter.js
|
2013-01-15 09:49:25 +04:00
|
|
|
#ifdef MOZ_SERVICES_HEALTHREPORT
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/browser/components/SelfSupportService.manifest
|
|
|
|
@RESPATH@/browser/components/SelfSupportService.js
|
2013-01-15 09:49:25 +04:00
|
|
|
#endif
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/components/SyncComponents.manifest
|
|
|
|
@RESPATH@/components/Weave.js
|
2016-03-11 07:52:58 +03:00
|
|
|
@RESPATH@/components/FxAccountsComponents.manifest
|
|
|
|
@RESPATH@/components/FxAccountsPush.js
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/components/CaptivePortalDetectComponents.manifest
|
|
|
|
@RESPATH@/components/captivedetect.js
|
|
|
|
@RESPATH@/components/servicesComponents.manifest
|
|
|
|
@RESPATH@/components/cryptoComponents.manifest
|
|
|
|
@RESPATH@/components/TelemetryStartup.js
|
|
|
|
@RESPATH@/components/TelemetryStartup.manifest
|
|
|
|
@RESPATH@/components/XULStore.js
|
|
|
|
@RESPATH@/components/XULStore.manifest
|
|
|
|
@RESPATH@/components/recording-cmdline.js
|
|
|
|
@RESPATH@/components/recording-cmdline.manifest
|
2014-12-16 19:21:11 +03:00
|
|
|
@RESPATH@/components/htmlMenuBuilder.js
|
|
|
|
@RESPATH@/components/htmlMenuBuilder.manifest
|
2014-11-18 20:15:03 +03:00
|
|
|
|
|
|
|
@RESPATH@/components/NotificationStorage.js
|
|
|
|
@RESPATH@/components/NotificationStorage.manifest
|
|
|
|
@RESPATH@/components/Push.js
|
|
|
|
@RESPATH@/components/Push.manifest
|
2015-12-08 23:41:41 +03:00
|
|
|
@RESPATH@/components/PushComponents.js
|
2014-11-18 20:15:03 +03:00
|
|
|
|
2016-01-13 00:44:08 +03:00
|
|
|
@RESPATH@/components/remotebrowserutils.manifest
|
|
|
|
@RESPATH@/components/RemoteWebNavigation.js
|
|
|
|
|
2016-11-02 02:02:43 +03:00
|
|
|
@RESPATH@/components/ProcessSelector.js
|
|
|
|
@RESPATH@/components/ProcessSelector.manifest
|
|
|
|
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/components/SlowScriptDebug.manifest
|
|
|
|
@RESPATH@/components/SlowScriptDebug.js
|
2014-05-21 05:27:24 +04:00
|
|
|
|
2012-10-07 09:34:30 +04:00
|
|
|
#ifdef MOZ_WEBRTC
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/components/PeerConnection.js
|
|
|
|
@RESPATH@/components/PeerConnection.manifest
|
2012-10-07 09:34:30 +04:00
|
|
|
#endif
|
|
|
|
|
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
|
2012-02-29 02:01:48 +04:00
|
|
|
|
2013-04-04 02:13:16 +04:00
|
|
|
#ifdef MOZ_WEBSPEECH
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/components/dom_webspeechsynth.xpt
|
2013-04-04 02:13:16 +04:00
|
|
|
#endif
|
|
|
|
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/components/nsAsyncShutdown.manifest
|
|
|
|
@RESPATH@/components/nsAsyncShutdown.js
|
2014-09-11 17:01:00 +04:00
|
|
|
|
2014-11-18 00:34:10 +03:00
|
|
|
@RESPATH@/components/BuiltinProviders.manifest
|
2016-05-20 09:53:30 +03:00
|
|
|
@RESPATH@/components/PresentationControlService.js
|
2016-04-11 06:20:55 +03:00
|
|
|
@RESPATH@/components/PresentationDataChannelSessionTransport.js
|
|
|
|
@RESPATH@/components/PresentationDataChannelSessionTransport.manifest
|
2014-11-15 00:55:24 +03:00
|
|
|
|
2017-03-02 03:58:11 +03:00
|
|
|
@RESPATH@/components/mozIntl.manifest
|
|
|
|
@RESPATH@/components/mozIntl.js
|
|
|
|
|
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-06-01 00:00:43 +03:00
|
|
|
#if defined(MOZ_DEBUG) || defined(NIGHTLY_BUILD)
|
|
|
|
@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
|
2017-06-05 01:38:11 +03:00
|
|
|
@RESPATH@/components/extension-process-script.js
|
2016-07-22 22:44:40 +03:00
|
|
|
@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/*
|
2009-08-21 21:05:28 +04:00
|
|
|
|
|
|
|
; Safe Browsing
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/components/nsURLClassifier.manifest
|
|
|
|
@RESPATH@/components/nsUrlClassifierHashCompleter.js
|
|
|
|
@RESPATH@/components/nsUrlClassifierListManager.js
|
|
|
|
@RESPATH@/components/nsUrlClassifierLib.js
|
|
|
|
@RESPATH@/components/url-classifier.xpt
|
2009-08-21 21:05:28 +04:00
|
|
|
|
2015-07-28 19:17:18 +03:00
|
|
|
; Private Browsing
|
|
|
|
@RESPATH@/components/privatebrowsing.xpt
|
|
|
|
@RESPATH@/components/PrivateBrowsing.manifest
|
|
|
|
@RESPATH@/components/PrivateBrowsingTrackingProtectionWhitelist.js
|
|
|
|
|
2016-01-30 11:07:38 +03:00
|
|
|
; Security Reports
|
|
|
|
@RESPATH@/components/SecurityReporter.manifest
|
|
|
|
@RESPATH@/components/SecurityReporter.js
|
|
|
|
|
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
|
|
|
|
2017-08-22 09:18:00 +03:00
|
|
|
#if defined(XP_WIN) && defined(MOZ_ENABLE_SKIA_PDF)
|
|
|
|
@BINPATH@/pdfium.dll
|
|
|
|
#endif
|
|
|
|
|
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/*
|
2015-06-05 14:48:34 +03:00
|
|
|
@RESPATH@/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}/chrome.manifest
|
|
|
|
@RESPATH@/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}/install.rdf
|
2014-11-18 20:15:03 +03:00
|
|
|
@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
|
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
|
|
|
|
2017-07-27 19:16:52 +03:00
|
|
|
; [Webide Files]
|
|
|
|
@RESPATH@/browser/chrome/webide@JAREXT@
|
|
|
|
@RESPATH@/browser/chrome/webide.manifest
|
|
|
|
@RESPATH@/browser/@PREF_DIR@/webide-prefs.js
|
|
|
|
|
2017-05-18 10:12:22 +03:00
|
|
|
; [DevTools Shim Files]
|
|
|
|
@RESPATH@/browser/chrome/devtools-shim@JAREXT@
|
|
|
|
@RESPATH@/browser/chrome/devtools-shim.manifest
|
2017-07-21 13:27:35 +03:00
|
|
|
@RESPATH@/browser/@PREF_DIR@/devtools-startup-prefs.js
|
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@/devtools.js
|
|
|
|
@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
|
2017-11-13 09:11:55 +03:00
|
|
|
; shell icons
|
|
|
|
@RESPATH@/browser/icons/*.png
|
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
|
2016-12-12 03:37:22 +03:00
|
|
|
@RESPATH@/browser/defaults/blocklists
|
2017-04-10 17:50:41 +03:00
|
|
|
@RESPATH@/browser/defaults/pinning
|
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
|
|
|
|
2017-03-29 20:25:55 +03:00
|
|
|
; Remote control protocol prefs
|
|
|
|
; defined in ../../testing/marionette/prefs/marionette.js
|
|
|
|
@RESPATH@/defaults/pref/marionette.js
|
|
|
|
|
2012-12-06 02:36:15 +04:00
|
|
|
; Services (gre) prefs
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/defaults/pref/services-sync.js
|
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/html/*
|
|
|
|
@RESPATH@/res/language.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
|
|
|
|
@RESPATH@/components/dom_svg.xpt
|
|
|
|
@RESPATH@/components/dom_smil.xpt
|
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@
|
|
|
|
#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@
|
|
|
|
#ifndef NSS_DISABLE_DBM
|
|
|
|
@BINPATH@/@DLL_PREFIX@nssdbm3@DLL_SUFFIX@
|
|
|
|
#endif
|
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
|
|
|
|
@RESPATH@/components/pipnss.xpt
|
|
|
|
@RESPATH@/components/pippki.xpt
|
2009-08-21 21:05:28 +04: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-13 00:04:42 +03:00
|
|
|
@RESPATH@/components/sandbox.xpt
|
2017-05-31 22:34:13 +03:00
|
|
|
#endif
|
2016-10-27 01:57:24 +03:00
|
|
|
|
2009-08-28 01:22:04 +04:00
|
|
|
; for Solaris SPARC
|
|
|
|
#ifdef SOLARIS
|
|
|
|
bin/libfreebl_32fpu_3.so
|
|
|
|
bin/libfreebl_32int_3.so
|
|
|
|
bin/libfreebl_32int64_3.so
|
|
|
|
#endif
|
|
|
|
|
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
|
|
|
|
|
2009-08-21 21:05:28 +04:00
|
|
|
; [Crash Reporter]
|
|
|
|
;
|
2009-08-28 01:22:04 +04:00
|
|
|
#ifdef MOZ_CRASHREPORTER
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/components/CrashService.manifest
|
|
|
|
@RESPATH@/components/CrashService.js
|
|
|
|
@RESPATH@/components/toolkit_crashservice.xpt
|
2009-08-28 01:22:04 +04:00
|
|
|
#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
|
2017-01-16 19:39:22 +03:00
|
|
|
@BINPATH@/minidump-analyzer@BIN_SUFFIX@
|
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
|
|
|
|
|
2017-01-16 19:39:22 +03:00
|
|
|
; [ Ping Sender ]
|
|
|
|
;
|
|
|
|
@BINPATH@/pingsender@BIN_SUFFIX@
|
|
|
|
|
2015-07-10 19:38:44 +03:00
|
|
|
@RESPATH@/components/dom_audiochannel.xpt
|
|
|
|
|
2014-11-10 15:58:14 +03:00
|
|
|
; Shutdown Terminator
|
2014-11-18 20:15:03 +03:00
|
|
|
@RESPATH@/components/nsTerminatorTelemetry.js
|
|
|
|
@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@
|
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
|
|
|
|
|
|
|
; gfx
|
|
|
|
#ifdef XP_WIN
|
|
|
|
@RESPATH@/components/GfxSanityTest.manifest
|
|
|
|
@RESPATH@/components/SanityTest.js
|
|
|
|
#endif
|
2015-07-15 10:31:53 +03:00
|
|
|
|
2017-06-22 19:49:03 +03:00
|
|
|
#ifdef MOZ_DMD
|
|
|
|
; DMD
|
|
|
|
@RESPATH@/dmd.py
|
|
|
|
@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
|
|
|
|
|
|
|
; Background Hang Monitor
|
|
|
|
@RESPATH@/components/backgroundhangmonitor.xpt
|
|
|
|
|
|
|
|
; NOTE: This must match the config checks in
|
|
|
|
; /toolkit/components/backgroundhangmonitor/moz.build.
|
|
|
|
#if defined(NIGHTLY_BUILD) && !defined(MOZ_DEBUG) && !defined(MOZ_TSAN)
|
|
|
|
@RESPATH@/components/BHRTelemetryService.js
|
|
|
|
@RESPATH@/components/BHRTelemetryService.manifest
|
|
|
|
#endif
|
2017-10-23 18:04:24 +03:00
|
|
|
|
|
|
|
#ifdef PKG_LOCALE_MANIFEST
|
|
|
|
#include @PKG_LOCALE_MANIFEST@
|
|
|
|
#endif
|