mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
60 lines
1.5 KiB
Python
60 lines
1.5 KiB
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/.
|
|
|
|
EXPORTS.mozilla.dom += [
|
|
'Gamepad.h',
|
|
'GamepadButton.h',
|
|
'GamepadFunctions.h',
|
|
'GamepadMonitoring.h',
|
|
'GamepadService.h',
|
|
'GamepadServiceTest.h'
|
|
]
|
|
|
|
UNIFIED_SOURCES = [
|
|
'Gamepad.cpp',
|
|
'GamepadButton.cpp',
|
|
'GamepadFunctions.cpp',
|
|
'GamepadMonitoring.cpp',
|
|
'GamepadService.cpp',
|
|
'GamepadServiceTest.cpp'
|
|
]
|
|
|
|
if CONFIG['MOZ_GAMEPAD_BACKEND'] == 'stub':
|
|
UNIFIED_SOURCES += [
|
|
'fallback/FallbackGamepad.cpp'
|
|
]
|
|
elif CONFIG['MOZ_GAMEPAD_BACKEND'] == 'cocoa':
|
|
UNIFIED_SOURCES += [
|
|
'cocoa/CocoaGamepad.cpp'
|
|
]
|
|
elif CONFIG['MOZ_GAMEPAD_BACKEND'] == 'windows':
|
|
UNIFIED_SOURCES += [
|
|
'windows/WindowsGamepad.cpp'
|
|
]
|
|
elif CONFIG['MOZ_GAMEPAD_BACKEND'] == 'linux':
|
|
UNIFIED_SOURCES += [
|
|
'linux/LinuxGamepad.cpp'
|
|
]
|
|
elif CONFIG['MOZ_GAMEPAD_BACKEND'] == 'android':
|
|
UNIFIED_SOURCES += [
|
|
'android/AndroidGamepad.cpp'
|
|
]
|
|
|
|
include('/ipc/chromium/chromium-config.mozbuild')
|
|
|
|
FINAL_LIBRARY = 'xul'
|
|
LOCAL_INCLUDES += [
|
|
'/dom/base',
|
|
]
|
|
|
|
CFLAGS += CONFIG['GLIB_CFLAGS']
|
|
CFLAGS += CONFIG['MOZ_DBUS_GLIB_CFLAGS']
|
|
CXXFLAGS += CONFIG['GLIB_CFLAGS']
|
|
CXXFLAGS += CONFIG['MOZ_DBUS_GLIB_CFLAGS']
|
|
|
|
if CONFIG['GNU_CXX']:
|
|
CXXFLAGS += ['-Wshadow']
|