mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-24 13:21:05 +00:00
23fd30a006
This is now just an alias for HyperTextAccessible on all platforms. This was done with the following bash script: ``` cd accessible find -name HyperTextAccessibleWrap.h -delete sed -i 's/#include "HyperTextAccessibleWrap.h"/#include "HyperTextAccessible.h"/;/"HyperTextAccessibleWrap.h",/d;s/HyperTextAccessibleWrap/HyperTextAccessible/g' `git grep -l HyperTextAccessibleWrap` ``` Differential Revision: https://phabricator.services.mozilla.com/D184796
71 lines
1.6 KiB
Python
71 lines
1.6 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/.
|
|
|
|
EXPORTS += [
|
|
"mozAccessibleProtocol.h",
|
|
]
|
|
|
|
EXPORTS.mozilla.a11y += [
|
|
"AccessibleWrap.h",
|
|
"PlatformExtTypes.h",
|
|
]
|
|
|
|
UNIFIED_SOURCES += [
|
|
"AccessibleWrap.mm",
|
|
"DocAccessibleWrap.mm",
|
|
"GeckoTextMarker.mm",
|
|
"MacUtils.mm",
|
|
"MOXAccessibleBase.mm",
|
|
"MOXLandmarkAccessibles.mm",
|
|
"MOXMathAccessibles.mm",
|
|
"MOXSearchInfo.mm",
|
|
"MOXTextMarkerDelegate.mm",
|
|
"MOXWebAreaAccessible.mm",
|
|
"mozAccessible.mm",
|
|
"mozActionElements.mm",
|
|
"mozHTMLAccessible.mm",
|
|
"mozRootAccessible.mm",
|
|
"mozSelectableElements.mm",
|
|
"mozTableAccessible.mm",
|
|
"mozTextAccessible.mm",
|
|
"Platform.mm",
|
|
"RootAccessibleWrap.mm",
|
|
"RotorRules.mm",
|
|
]
|
|
|
|
SOURCES += [
|
|
"!MacSelectorMap.mm",
|
|
]
|
|
|
|
LOCAL_INCLUDES += [
|
|
"/accessible/base",
|
|
"/accessible/generic",
|
|
"/accessible/html",
|
|
"/accessible/ipc",
|
|
"/accessible/xul",
|
|
"/layout/generic",
|
|
"/layout/xul",
|
|
"/widget",
|
|
"/widget/cocoa",
|
|
]
|
|
|
|
GeneratedFile(
|
|
"MacSelectorMap.h",
|
|
script="/accessible/mac/SelectorMapGen.py",
|
|
entry_point="gen_h",
|
|
inputs=["MOXAccessibleProtocol.h"],
|
|
)
|
|
GeneratedFile(
|
|
"MacSelectorMap.mm",
|
|
script="/accessible/mac/SelectorMapGen.py",
|
|
entry_point="gen_mm",
|
|
inputs=["MOXAccessibleProtocol.h"],
|
|
)
|
|
|
|
FINAL_LIBRARY = "xul"
|
|
|
|
include("/ipc/chromium/chromium-config.mozbuild")
|