1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/dom/smil/moz.build Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,73 @@ 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 +TEST_TOOL_DIRS += ['test'] 1.11 + 1.12 +EXPORTS += [ 1.13 + 'nsISMILAttr.h', 1.14 + 'nsISMILType.h', 1.15 + 'nsSMILAnimationController.h', 1.16 + 'nsSMILAnimationFunction.h', 1.17 + 'nsSMILCompositorTable.h', 1.18 + 'nsSMILCSSProperty.h', 1.19 + 'nsSMILInstanceTime.h', 1.20 + 'nsSMILInterval.h', 1.21 + 'nsSMILKeySpline.h', 1.22 + 'nsSMILMappedAttribute.h', 1.23 + 'nsSMILMilestone.h', 1.24 + 'nsSMILNullType.h', 1.25 + 'nsSMILRepeatCount.h', 1.26 + 'nsSMILSetAnimationFunction.h', 1.27 + 'nsSMILTargetIdentifier.h', 1.28 + 'nsSMILTimeContainer.h', 1.29 + 'nsSMILTimedElement.h', 1.30 + 'nsSMILTimeValue.h', 1.31 + 'nsSMILTimeValueSpec.h', 1.32 + 'nsSMILTimeValueSpecParams.h', 1.33 + 'nsSMILTypes.h', 1.34 + 'nsSMILValue.h', 1.35 +] 1.36 + 1.37 +EXPORTS.mozilla.dom += [ 1.38 + 'TimeEvent.h', 1.39 +] 1.40 + 1.41 +UNIFIED_SOURCES += [ 1.42 + 'nsSMILAnimationController.cpp', 1.43 + 'nsSMILAnimationFunction.cpp', 1.44 + 'nsSMILCompositor.cpp', 1.45 + 'nsSMILCSSProperty.cpp', 1.46 + 'nsSMILCSSValueType.cpp', 1.47 + 'nsSMILFloatType.cpp', 1.48 + 'nsSMILInstanceTime.cpp', 1.49 + 'nsSMILInterval.cpp', 1.50 + 'nsSMILKeySpline.cpp', 1.51 + 'nsSMILMappedAttribute.cpp', 1.52 + 'nsSMILNullType.cpp', 1.53 + 'nsSMILParserUtils.cpp', 1.54 + 'nsSMILRepeatCount.cpp', 1.55 + 'nsSMILSetAnimationFunction.cpp', 1.56 + 'nsSMILTimeContainer.cpp', 1.57 + 'nsSMILTimedElement.cpp', 1.58 + 'nsSMILTimeValue.cpp', 1.59 + 'nsSMILTimeValueSpec.cpp', 1.60 + 'nsSMILValue.cpp', 1.61 + 'SMILBoolType.cpp', 1.62 + 'SMILEnumType.cpp', 1.63 + 'SMILIntegerType.cpp', 1.64 + 'SMILStringType.cpp', 1.65 + 'TimeEvent.cpp', 1.66 +] 1.67 + 1.68 +FAIL_ON_WARNINGS = True 1.69 + 1.70 +LOCAL_INCLUDES += [ 1.71 + '/content/base/src', 1.72 + '/content/svg/content/src', 1.73 + '/layout/style', 1.74 +] 1.75 + 1.76 +FINAL_LIBRARY = 'gklayout'