1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/accessible/src/windows/ia2/moz.build Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,47 @@ 1.4 +# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*- 1.5 +# vim: set filetype=python: 1.6 +# This Source Code Form is subject to the terms of the Mozilla Public 1.7 +# License, v. 2.0. If a copy of the MPL was not distributed with this 1.8 +# file, You can obtain one at http://mozilla.org/MPL/2.0/. 1.9 + 1.10 +EXPORTS += [ 1.11 + 'ia2Accessible.h', 1.12 + 'ia2AccessibleAction.h', 1.13 + 'ia2AccessibleComponent.h', 1.14 + 'ia2AccessibleEditableText.h', 1.15 + 'ia2AccessibleHyperlink.h', 1.16 + 'ia2AccessibleHypertext.h', 1.17 + 'ia2AccessibleText.h', 1.18 + 'ia2AccessibleValue.h', 1.19 +] 1.20 + 1.21 +UNIFIED_SOURCES += [ 1.22 + 'ia2Accessible.cpp', 1.23 + 'ia2AccessibleAction.cpp', 1.24 + 'ia2AccessibleComponent.cpp', 1.25 + 'ia2AccessibleEditableText.cpp', 1.26 + 'ia2AccessibleHyperlink.cpp', 1.27 + 'ia2AccessibleHypertext.cpp', 1.28 + 'ia2AccessibleImage.cpp', 1.29 + 'ia2AccessibleRelation.cpp', 1.30 + 'ia2AccessibleText.cpp', 1.31 + 'ia2AccessibleValue.cpp', 1.32 +] 1.33 + 1.34 +# These files cannot be built in unified mode because they both include 1.35 +# AccessibleTable2_i.c. 1.36 +SOURCES += [ 1.37 + 'ia2AccessibleTable.cpp', 1.38 + 'ia2AccessibleTableCell.cpp', 1.39 +] 1.40 + 1.41 +LOCAL_INCLUDES += [ 1.42 + '../../base', 1.43 + '../../generic', 1.44 + '../../html', 1.45 + '../../xpcom', 1.46 + '../../xul', 1.47 + '../msaa', 1.48 +] 1.49 + 1.50 +FINAL_LIBRARY = 'xul'