mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
46 lines
1.1 KiB
Makefile
46 lines
1.1 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 $(DEPTH)/config/autoconf.mk
|
|
|
|
include $(topsrcdir)/config/config.mk
|
|
|
|
abs_srcdir = $(call core_abspath,$(srcdir))
|
|
|
|
CHROME_DEPS += $(abs_srcdir)/content/overrides/app-license.html
|
|
|
|
TEST_DIRS += content/test
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
PRE_RELEASE_SUFFIX := ""
|
|
|
|
DEFINES += \
|
|
-DMOZ_APP_VERSION=$(MOZ_APP_VERSION) \
|
|
-DAPP_LICENSE_BLOCK=$(abs_srcdir)/content/overrides/app-license.html \
|
|
-DPRE_RELEASE_SUFFIX="$(PRE_RELEASE_SUFFIX)" \
|
|
$(NULL)
|
|
|
|
ifneq (,$(filter windows gtk2 cocoa, $(MOZ_WIDGET_TOOLKIT)))
|
|
DEFINES += -DHAVE_SHELL_SERVICE=1
|
|
endif
|
|
|
|
ifneq (,$(filter windows cocoa gtk2, $(MOZ_WIDGET_TOOLKIT)))
|
|
DEFINES += -DCONTEXT_COPY_IMAGE_CONTENTS=1
|
|
endif
|
|
|
|
ifneq (,$(filter windows, $(MOZ_WIDGET_TOOLKIT)))
|
|
DEFINES += -DCAN_DRAW_IN_TITLEBAR=1
|
|
endif
|
|
|
|
ifneq (,$(filter windows gtk2, $(MOZ_WIDGET_TOOLKIT)))
|
|
DEFINES += -DMENUBAR_CAN_AUTOHIDE=1
|
|
endif
|