https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 87eb0b3f33c3b5eb9fe6fbe4f8e282854cf5c0b9 authored by ffxbld on 10 October 2012, 21:21:27 UTC
Added FENNEC_16_0_1_RELEASE FENNEC_16_0_1_BUILD1 tag(s) for changeset baef7859ea5c. DONTBUILD CLOSED TREE a=release
Tip revision: 87eb0b3
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     = ../..
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 \
  apppicker \
  commandlines \
  console \
  contentprefs \
  cookie \
  downloads \
  exthelper \
  filepicker \
  find \
  intl \
  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

ifneq (,$(filter cocoa, $(MOZ_WIDGET_TOOLKIT)))
TOOL_DIRS += alerts
else
PARALLEL_DIRS += alerts
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_PP_COMPONENTS = nsDefaultCLH.js
EXTRA_COMPONENTS = nsDefaultCLH.manifest

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