moz.build (840B)
1 # -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*- 2 # vim: set filetype=python: 3 # This Source Code Form is subject to the terms of the Mozilla Public 4 # License, v. 2.0. If a copy of the MPL was not distributed with this 5 # file, You can obtain one at http://mozilla.org/MPL/2.0/. 6 7 EXPORTS.mozilla.a11y += [ 8 "AccessibleWrap.h", 9 "SessionAccessibility.h", 10 "TraversalRule.h", 11 ] 12 13 SOURCES += [ 14 "AccessibleWrap.cpp", 15 "DocAccessibleWrap.cpp", 16 "Platform.cpp", 17 "SessionAccessibility.cpp", 18 "TraversalRule.cpp", 19 ] 20 21 LOCAL_INCLUDES += [ 22 "/accessible/base", 23 "/accessible/generic", 24 "/accessible/html", 25 "/accessible/ipc", 26 "/accessible/xpcom", 27 "/accessible/xul", 28 "/dom/base", 29 "/widget", 30 "/widget/android", 31 ] 32 33 FINAL_LIBRARY = "xul" 34 35 include("/ipc/chromium/chromium-config.mozbuild")