mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
72ace35626
--HG-- rename : browser/components/thumbnails/BrowserPageThumbs.manifest => toolkit/components/thumbnails/BrowserPageThumbs.manifest rename : browser/components/thumbnails/Makefile.in => toolkit/components/thumbnails/Makefile.in rename : browser/components/thumbnails/PageThumbs.jsm => toolkit/components/thumbnails/PageThumbs.jsm rename : browser/components/thumbnails/PageThumbsProtocol.js => toolkit/components/thumbnails/PageThumbsProtocol.js rename : browser/components/thumbnails/PageThumbsWorker.js => toolkit/components/thumbnails/PageThumbsWorker.js rename : browser/components/thumbnails/test/Makefile.in => toolkit/components/thumbnails/test/Makefile.in rename : browser/components/thumbnails/test/background_red.html => toolkit/components/thumbnails/test/background_red.html rename : browser/components/thumbnails/test/background_red_redirect.sjs => toolkit/components/thumbnails/test/background_red_redirect.sjs rename : browser/components/thumbnails/test/browser_thumbnails_bug726727.js => toolkit/components/thumbnails/test/browser_thumbnails_bug726727.js rename : browser/components/thumbnails/test/browser_thumbnails_capture.js => toolkit/components/thumbnails/test/browser_thumbnails_capture.js rename : browser/components/thumbnails/test/browser_thumbnails_expiration.js => toolkit/components/thumbnails/test/browser_thumbnails_expiration.js rename : browser/components/thumbnails/test/browser_thumbnails_privacy.js => toolkit/components/thumbnails/test/browser_thumbnails_privacy.js rename : browser/components/thumbnails/test/browser_thumbnails_redirect.js => toolkit/components/thumbnails/test/browser_thumbnails_redirect.js rename : browser/components/thumbnails/test/browser_thumbnails_storage.js => toolkit/components/thumbnails/test/browser_thumbnails_storage.js rename : browser/components/thumbnails/test/browser_thumbnails_storage_migrate3.js => toolkit/components/thumbnails/test/browser_thumbnails_storage_migrate3.js rename : browser/components/thumbnails/test/head.js => toolkit/components/thumbnails/test/head.js rename : browser/components/thumbnails/test/privacy_cache_control.sjs => toolkit/components/thumbnails/test/privacy_cache_control.sjs
103 lines
1.6 KiB
Makefile
103 lines
1.6 KiB
Makefile
# 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/.
|
|
|
|
DEPTH = @DEPTH@
|
|
topsrcdir = @top_srcdir@
|
|
srcdir = @srcdir@
|
|
VPATH = @srcdir@
|
|
|
|
include $(topsrcdir)/config/config.mk
|
|
|
|
# These component dirs are built for all apps (including suite)
|
|
|
|
ifdef MOZ_ENABLE_XREMOTE
|
|
PARALLEL_DIRS += remote
|
|
endif
|
|
|
|
PARALLEL_DIRS += \
|
|
aboutmemory \
|
|
alerts \
|
|
apppicker \
|
|
commandlines \
|
|
console \
|
|
contentprefs \
|
|
cookie \
|
|
downloads \
|
|
exthelper \
|
|
filepicker \
|
|
find \
|
|
intl \
|
|
mediasniffer \
|
|
microformats \
|
|
osfile \
|
|
parentalcontrols \
|
|
passwordmgr \
|
|
perf \
|
|
places \
|
|
prompts \
|
|
protobuf \
|
|
reflect \
|
|
social \
|
|
startup \
|
|
statusfilter \
|
|
telemetry \
|
|
thumbnails \
|
|
typeaheadfind \
|
|
urlformatter \
|
|
viewconfig \
|
|
viewsource \
|
|
$(NULL)
|
|
|
|
ifdef BUILD_CTYPES
|
|
PARALLEL_DIRS += \
|
|
ctypes \
|
|
$(NULL)
|
|
endif
|
|
|
|
ifdef MOZ_FEEDS
|
|
PARALLEL_DIRS += feeds
|
|
endif
|
|
|
|
ifdef MOZ_HELP_VIEWER
|
|
PARALLEL_DIRS += help
|
|
endif
|
|
|
|
ifdef MOZ_JSDOWNLOADS
|
|
PARALLEL_DIRS += jsdownloads
|
|
endif
|
|
|
|
ifdef NS_PRINTING
|
|
PARALLEL_DIRS += printing
|
|
endif
|
|
|
|
ifdef MOZ_XUL
|
|
PARALLEL_DIRS += \
|
|
autocomplete \
|
|
satchel \
|
|
$(NULL)
|
|
endif
|
|
|
|
ifdef MOZ_TOOLKIT_SEARCH
|
|
PARALLEL_DIRS += search
|
|
endif
|
|
|
|
ifdef MOZ_URL_CLASSIFIER
|
|
PARALLEL_DIRS += url-classifier
|
|
endif
|
|
|
|
ifdef MOZ_CAPTIVEDETECT
|
|
PARALLEL_DIRS += captivedetect
|
|
endif
|
|
|
|
DIRS += \
|
|
build \
|
|
$(NULL)
|
|
|
|
EXTRA_COMPONENTS = \
|
|
nsDefaultCLH.manifest \
|
|
nsDefaultCLH.js \
|
|
$(NULL)
|
|
|
|
include $(topsrcdir)/config/rules.mk
|