michael@0: # -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*- michael@0: # vim: set filetype=python: michael@0: # This Source Code Form is subject to the terms of the Mozilla Public michael@0: # License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: # file, You can obtain one at http://mozilla.org/MPL/2.0/. michael@0: michael@0: TEST_TOOL_DIRS += ['test'] michael@0: michael@0: EXPORTS += [ michael@0: 'nsISMILAttr.h', michael@0: 'nsISMILType.h', michael@0: 'nsSMILAnimationController.h', michael@0: 'nsSMILAnimationFunction.h', michael@0: 'nsSMILCompositorTable.h', michael@0: 'nsSMILCSSProperty.h', michael@0: 'nsSMILInstanceTime.h', michael@0: 'nsSMILInterval.h', michael@0: 'nsSMILKeySpline.h', michael@0: 'nsSMILMappedAttribute.h', michael@0: 'nsSMILMilestone.h', michael@0: 'nsSMILNullType.h', michael@0: 'nsSMILRepeatCount.h', michael@0: 'nsSMILSetAnimationFunction.h', michael@0: 'nsSMILTargetIdentifier.h', michael@0: 'nsSMILTimeContainer.h', michael@0: 'nsSMILTimedElement.h', michael@0: 'nsSMILTimeValue.h', michael@0: 'nsSMILTimeValueSpec.h', michael@0: 'nsSMILTimeValueSpecParams.h', michael@0: 'nsSMILTypes.h', michael@0: 'nsSMILValue.h', michael@0: ] michael@0: michael@0: EXPORTS.mozilla.dom += [ michael@0: 'TimeEvent.h', michael@0: ] michael@0: michael@0: UNIFIED_SOURCES += [ michael@0: 'nsSMILAnimationController.cpp', michael@0: 'nsSMILAnimationFunction.cpp', michael@0: 'nsSMILCompositor.cpp', michael@0: 'nsSMILCSSProperty.cpp', michael@0: 'nsSMILCSSValueType.cpp', michael@0: 'nsSMILFloatType.cpp', michael@0: 'nsSMILInstanceTime.cpp', michael@0: 'nsSMILInterval.cpp', michael@0: 'nsSMILKeySpline.cpp', michael@0: 'nsSMILMappedAttribute.cpp', michael@0: 'nsSMILNullType.cpp', michael@0: 'nsSMILParserUtils.cpp', michael@0: 'nsSMILRepeatCount.cpp', michael@0: 'nsSMILSetAnimationFunction.cpp', michael@0: 'nsSMILTimeContainer.cpp', michael@0: 'nsSMILTimedElement.cpp', michael@0: 'nsSMILTimeValue.cpp', michael@0: 'nsSMILTimeValueSpec.cpp', michael@0: 'nsSMILValue.cpp', michael@0: 'SMILBoolType.cpp', michael@0: 'SMILEnumType.cpp', michael@0: 'SMILIntegerType.cpp', michael@0: 'SMILStringType.cpp', michael@0: 'TimeEvent.cpp', michael@0: ] michael@0: michael@0: FAIL_ON_WARNINGS = True michael@0: michael@0: LOCAL_INCLUDES += [ michael@0: '/content/base/src', michael@0: '/content/svg/content/src', michael@0: '/layout/style', michael@0: ] michael@0: michael@0: FINAL_LIBRARY = 'gklayout'