https://github.com/mozilla/gecko-dev
Raw File
Tip revision: fc51d46b21b0366b08c13b9c4bb4c17a33858ea0 authored by seabld on 06 January 2013, 06:20:10 UTC
Added tag SEAMONKEY_2_15_RELEASE for changeset FIREFOX_18_0_BUILD1. CLOSED TREE a=release
Tip revision: fc51d46
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 $(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 \
  reflect \
  social \
  startup \
  statusfilter \
  telemetry \
  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 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

DIRS += \
  build \
  $(NULL)

EXTRA_COMPONENTS = \
  nsDefaultCLH.manifest \
  nsDefaultCLH.js \
  $(NULL)

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