Bug 888271 - Make test_AudioBufferSourceNodeOffset.html fuzzier.
[gecko.git] / hal / Makefile.in
blob1fc11f9386a340b68c198edcac47bf771f2e499a
2 # This Source Code Form is subject to the terms of the Mozilla Public
3 # License, v. 2.0. If a copy of the MPL was not distributed with this
4 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
6 DEPTH = @DEPTH@
7 topsrcdir = @top_srcdir@
8 srcdir = @srcdir@
9 VPATH = \
10 $(srcdir) \
11 $(srcdir)/android \
12 $(srcdir)/gonk \
13 $(srcdir)/fallback \
14 $(srcdir)/sandbox \
15 $(srcdir)/linux \
16 $(srcdir)/windows \
17 $(srcdir)/cocoa \
18 $(NULL)
20 relativesrcdir = @relativesrcdir@
22 include $(DEPTH)/config/autoconf.mk
24 LIBRARY_NAME = hal_s
25 FORCE_STATIC_LIB = 1
26 LIBXUL_LIBRARY = 1
27 EXPORT_LIBRARY = 1
28 FAIL_ON_WARNINGS = 1
30 MOCHITEST_BROWSER_FILES += \
31 tests/browser_alarms.js \
32 $(NULL)
34 ifdef MOZ_GAMEPAD
35 LOCAL_INCLUDES = -I$(topsrcdir)/dom/base
36 endif
38 include $(topsrcdir)/config/config.mk
39 include $(topsrcdir)/ipc/chromium/chromium-config.mk
40 include $(topsrcdir)/config/rules.mk
42 CFLAGS += $(GLIB_CFLAGS) $(MOZ_DBUS_GLIB_CFLAGS)
43 CXXFLAGS += $(GLIB_CFLAGS) $(MOZ_DBUS_GLIB_CFLAGS)
45 ifeq (gonk,$(MOZ_WIDGET_TOOLKIT))
46 # So that we can call nsScreenManagerGonk::GetConfiguration().
47 LOCAL_INCLUDES += -I$(topsrcdir)/widget/gonk
48 LOCAL_INCLUDES += -I$(topsrcdir)/widget/xpwidgets
49 LOCAL_INCLUDES += -I$(ANDROID_SOURCE)/hardware/libhardware_legacy/include
50 endif