mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
f9d17c6e43
MozReview-Commit-ID: 76M0KYAZCmW --HG-- extra : rebase_source : 09e4d00cad3b788d897dca30abf6c80022d7928b
67 lines
1.7 KiB
Python
67 lines
1.7 KiB
Python
# -*- Mode: python; 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/.
|
|
|
|
UNIFIED_SOURCES += [
|
|
'nsAccessibleRelation.cpp',
|
|
'xpcAccessibilityService.cpp',
|
|
'xpcAccessible.cpp',
|
|
'xpcAccessibleApplication.cpp',
|
|
'xpcAccessibleDocument.cpp',
|
|
'xpcAccessibleGeneric.cpp',
|
|
'xpcAccessibleHyperLink.cpp',
|
|
'xpcAccessibleHyperText.cpp',
|
|
'xpcAccessibleImage.cpp',
|
|
'xpcAccessibleSelectable.cpp',
|
|
'xpcAccessibleTable.cpp',
|
|
'xpcAccessibleTableCell.cpp',
|
|
'xpcAccessibleTextRange.cpp',
|
|
'xpcAccessibleValue.cpp',
|
|
]
|
|
|
|
SOURCES += [
|
|
'!xpcAccEvents.cpp',
|
|
]
|
|
|
|
EXPORTS += [
|
|
'!xpcAccEvents.h',
|
|
'xpcAccessibilityService.h',
|
|
]
|
|
|
|
LOCAL_INCLUDES += [
|
|
'/accessible/base',
|
|
'/accessible/generic',
|
|
]
|
|
|
|
if 'gtk' in CONFIG['MOZ_WIDGET_TOOLKIT']:
|
|
LOCAL_INCLUDES += [
|
|
'/accessible/atk',
|
|
]
|
|
elif CONFIG['MOZ_WIDGET_TOOLKIT'] == 'windows':
|
|
LOCAL_INCLUDES += [
|
|
'/accessible/windows/msaa',
|
|
]
|
|
elif CONFIG['MOZ_WIDGET_TOOLKIT'] == 'cocoa':
|
|
LOCAL_INCLUDES += [
|
|
'/accessible/mac',
|
|
]
|
|
else:
|
|
LOCAL_INCLUDES += [
|
|
'/accessible/other',
|
|
]
|
|
|
|
GENERATED_FILES += [('xpcAccEvents.h', 'xpcAccEvents.cpp')]
|
|
|
|
xpc_acc = GENERATED_FILES[('xpcAccEvents.h', 'xpcAccEvents.cpp')]
|
|
xpc_acc.script = 'AccEventGen.py:gen_files'
|
|
xpc_acc.inputs += ['AccEvents.conf', '!/xpcom/idl-parser/xpidl/xpidllex.py', '!/xpcom/idl-parser/xpidl/xpidlyacc.py']
|
|
|
|
FINAL_LIBRARY = 'xul'
|
|
|
|
include('/ipc/chromium/chromium-config.mozbuild')
|
|
|
|
if CONFIG['GNU_CXX']:
|
|
CXXFLAGS += ['-Wno-error=shadow']
|