mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-23 12:51:06 +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
24 lines
547 B
Python
24 lines
547 B
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.mozilla.a11y += [
|
|
"AccessibleWrap.h",
|
|
]
|
|
|
|
SOURCES += [
|
|
"AccessibleWrap.cpp",
|
|
"Platform.cpp",
|
|
]
|
|
|
|
LOCAL_INCLUDES += [
|
|
"/accessible/base",
|
|
"/accessible/generic",
|
|
"/accessible/html",
|
|
"/accessible/xul",
|
|
]
|
|
|
|
FINAL_LIBRARY = "xul"
|