https://github.com/mozilla/gecko-dev
Raw File
Tip revision: d2b0b84c2af794bb79acc39ae59425756fdd0886 authored by Mark Hammond on 09 September 2013, 00:16:21 UTC
Bug 906713 - Reset default capture timeout earlier to prevent oranges. r=adw, a=test-only
Tip revision: d2b0b84
Makefile.in
# Copyright 2012 Mozilla Foundation and Mozilla contributors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

DEPTH            = @DEPTH@
topsrcdir        = @top_srcdir@
srcdir           = @srcdir@
VPATH            = @srcdir@
FAIL_ON_WARNINGS := 1

include $(DEPTH)/config/autoconf.mk
include $(topsrcdir)/dom/dom-config.mk

VPATH += $(srcdir)/ipc

ifneq (,$(MOZ_B2G_BT))

LIBRARY_NAME     = dombluetooth_s
LIBXUL_LIBRARY   = 1
FORCE_STATIC_LIB = 1

ifeq (gonk,$(MOZ_WIDGET_TOOLKIT))
VPATH += \
  $(srcdir)/linux \
  $(srcdir)/gonk \
  $(NULL)
LOCAL_INCLUDES += $(MOZ_DBUS_CFLAGS)
DEFINES += -DMOZ_BLUETOOTH_GONK
else
ifdef MOZ_ENABLE_DBUS
VPATH += $(srcdir)/linux
LOCAL_INCLUDES += $(MOZ_DBUS_CFLAGS)
CFLAGS += $(MOZ_DBUS_GLIB_CFLAGS)
CXXFLAGS += $(MOZ_DBUS_GLIB_CFLAGS) -DHAVE_PTHREADS
DEFINES += -DMOZ_BLUETOOTH_DBUS
endif
endif

# Add VPATH to LOCAL_INCLUDES so we are going to include the correct backend
# subdirectory.
LOCAL_INCLUDES += $(VPATH:%=-I%)

endif # MOZ_B2G_BT

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