mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
9e8cc51307
--HG-- rename : browser/components/safebrowsing/content/blockedSite.xhtml => browser/base/content/blockedSite.xhtml rename : browser/components/safebrowsing/content/report-phishing-overlay.xul => browser/base/content/report-phishing-overlay.xul rename : browser/components/safebrowsing/content/test/browser_bug400731.js => browser/base/content/test/browser_bug400731.js rename : browser/components/safebrowsing/content/test/browser_bug415846.js => browser/base/content/test/browser_bug415846.js rename : browser/components/safebrowsing/SafeBrowsing.jsm => toolkit/components/url-classifier/SafeBrowsing.jsm
55 lines
968 B
Makefile
55 lines
968 B
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 = ../..
|
|
topsrcdir = @top_srcdir@
|
|
srcdir = @srcdir@
|
|
VPATH = @srcdir@
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
MODULE = browsercomps
|
|
XPIDL_MODULE = browsercompsbase
|
|
|
|
XPIDLSRCS = \
|
|
nsIBrowserGlue.idl \
|
|
nsIBrowserHandler.idl \
|
|
$(NULL)
|
|
|
|
EXTRA_PP_COMPONENTS = \
|
|
BrowserComponents.manifest \
|
|
nsBrowserContentHandler.js \
|
|
nsBrowserGlue.js \
|
|
$(NULL)
|
|
|
|
EXTRA_JS_MODULES = distribution.js
|
|
|
|
PARALLEL_DIRS = \
|
|
about \
|
|
certerror \
|
|
dirprovider \
|
|
downloads \
|
|
feeds \
|
|
places \
|
|
preferences \
|
|
privatebrowsing \
|
|
search \
|
|
sessionstore \
|
|
shell \
|
|
sidebar \
|
|
tabview \
|
|
thumbnails \
|
|
migration \
|
|
$(NULL)
|
|
|
|
TEST_DIRS += test
|
|
|
|
DIRS += build
|
|
|
|
ifdef MOZILLA_OFFICIAL
|
|
DEFINES += -DOFFICIAL_BUILD=1
|
|
endif
|
|
|
|
include $(topsrcdir)/config/rules.mk
|