gecko/dom/system/moz.build
Ted Mielczarek aa974a78e0 bug 690935 - implement navigator.getGamepads(). r=smaug
--HG--
rename : content/events/src/nsDOMGamepad.cpp => dom/gamepad/Gamepad.cpp
rename : content/events/src/nsDOMGamepad.h => dom/gamepad/Gamepad.h
rename : dom/system/GamepadService.cpp => dom/gamepad/GamepadService.cpp
rename : dom/system/GamepadService.h => dom/gamepad/GamepadService.h
extra : rebase_source : da536e09d6c09c605db28e4af4ccccf824efc20d
2012-02-15 19:47:13 -05:00

42 lines
850 B
Python

# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
# vim: set filetype=python:
# 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/.
toolkit = CONFIG['MOZ_WIDGET_TOOLKIT']
if toolkit in ('qt', 'gtk2', 'gtk3'):
DIRS += ['unix']
elif toolkit == 'windows':
DIRS += ['windows']
elif toolkit == 'android':
DIRS += ['android']
if CONFIG['MOZ_B2G_RIL']:
DIRS += ['gonk']
TEST_DIRS += ['tests']
XPIDL_SOURCES += [
'nsIOSFileConstantsService.idl',
]
XPIDL_MODULE = 'dom_system'
MODULE = 'dom'
EXPORTS += [
'nsDeviceSensors.h',
]
EXPORTS.mozilla += [
'OSFileConstants.h',
]
CPP_SOURCES += [
'OSFileConstants.cpp',
'nsDeviceSensors.cpp',
]