https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 8b12d6b5364659f6be8400d5cd44dba2374f339e authored by ffxbld on 07 March 2013, 10:24:02 UTC
Added FENNEC_19_0_2_RELEASE FENNEC_19_0_2_BUILD1 tag(s) for changeset c0f47817e7ad. DONTBUILD CLOSED TREE a=release
Tip revision: 8b12d6b
Makefile.in
#
# 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

MODULE		= layout

PARALLEL_DIRS = \
		style \
		base \
		generic \
		forms \
		tables \
		svg \
		xul/base/public \
		xul/base/src \
		ipc \
		mathml \
		$(NULL)

ifdef NS_PRINTING
PARALLEL_DIRS += printing
endif

PARALLEL_DIRS += inspector/public inspector/src
ifdef ENABLE_TESTS
PARALLEL_DIRS += inspector/tests inspector/tests/chrome
endif

DIRS           += build
DIRS           += media

ifdef ENABLE_TESTS
PARALLEL_DIRS += \
  mathml/tests \
  xul/test \
  xul/base/test \
  $(NULL)

TOOL_DIRS      += tools/reftest reftests/fonts reftests/fonts/mplus

ifdef MOZ_DEBUG
DIRS            += tools/layout-debug
endif
endif

include $(topsrcdir)/config/rules.mk
back to top