mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
4669225953
Backed out changeset 8898b6c66941 (bug 854169) Backed out changeset 12cebd8b5669 (bug 854169) Backed out changeset 844860e32631 (bug 854169) Backed out changeset 4ede802f8dbb (bug 854169) Backed out changeset ccae8b3f0a7d (bug 854169)
50 lines
1.6 KiB
Makefile
50 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/.
|
|
|
|
LOCAL_INCLUDES = \
|
|
-I$(srcdir)/../alerts \
|
|
-I$(srcdir)/../downloads \
|
|
-I$(srcdir)/../feeds \
|
|
-I$(srcdir)/../find \
|
|
-I$(srcdir)/../intl \
|
|
-I$(srcdir)/../jsdownloads/src \
|
|
-I$(srcdir)/../protobuf \
|
|
-I$(srcdir)/../startup \
|
|
-I$(srcdir)/../statusfilter \
|
|
-I$(srcdir)/../typeaheadfind \
|
|
-I$(srcdir)/../url-classifier \
|
|
-I$(srcdir)/../../xre \
|
|
$(NULL)
|
|
|
|
SHARED_LIBRARY_LIBS = \
|
|
../alerts/$(LIB_PREFIX)alerts_s.$(LIB_SUFFIX) \
|
|
../find/$(LIB_PREFIX)mozfind_s.$(LIB_SUFFIX) \
|
|
../typeaheadfind/$(LIB_PREFIX)fastfind_s.$(LIB_SUFFIX) \
|
|
../startup/$(LIB_PREFIX)appstartup_s.$(LIB_SUFFIX) \
|
|
../statusfilter/$(LIB_PREFIX)mozbrwsr_s.$(LIB_SUFFIX) \
|
|
../downloads/$(LIB_PREFIX)download_s.$(LIB_SUFFIX) \
|
|
../jsdownloads/src/$(LIB_PREFIX)jsdownloads_s.$(LIB_SUFFIX) \
|
|
../protobuf/$(LIB_PREFIX)protobuf_s.$(LIB_SUFFIX) \
|
|
../intl/$(LIB_PREFIX)intl_s.$(LIB_SUFFIX) \
|
|
../finalizationwitness/$(LIB_PREFIX)finalizationwitness_s.$(LIB_SUFFIX) \
|
|
$(NULL)
|
|
|
|
ifndef MOZ_DISABLE_PARENTAL_CONTROLS
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),windows)
|
|
SHARED_LIBRARY_LIBS += ../parentalcontrols/$(LIB_PREFIX)parentalcontrols_s.$(LIB_SUFFIX)
|
|
LOCAL_INCLUDES += \
|
|
-I$(srcdir)/../parentalcontrols \
|
|
$(NULL)
|
|
endif
|
|
endif
|
|
|
|
ifdef MOZ_URL_CLASSIFIER
|
|
SHARED_LIBRARY_LIBS += ../url-classifier/$(LIB_PREFIX)urlclassifier_s.$(LIB_SUFFIX)
|
|
endif
|
|
|
|
ifdef MOZ_FEEDS
|
|
SHARED_LIBRARY_LIBS += ../feeds/$(LIB_PREFIX)feed_s.$(LIB_SUFFIX)
|
|
endif
|