2013-04-01 22:36:59 +04:00
|
|
|
# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-26 00:47:19 +04:00
|
|
|
# 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/.
|
|
|
|
|
|
|
|
TEST_TOOL_DIRS += ['test']
|
2013-03-19 22:47:00 +04:00
|
|
|
|
2013-04-16 23:24:43 +04:00
|
|
|
EXPORTS += [
|
|
|
|
'nsISMILAttr.h',
|
|
|
|
'nsISMILType.h',
|
|
|
|
'nsSMILAnimationController.h',
|
|
|
|
'nsSMILAnimationFunction.h',
|
|
|
|
'nsSMILCompositorTable.h',
|
2013-10-24 03:05:43 +04:00
|
|
|
'nsSMILCSSProperty.h',
|
2013-04-16 23:24:43 +04:00
|
|
|
'nsSMILInstanceTime.h',
|
|
|
|
'nsSMILInterval.h',
|
|
|
|
'nsSMILKeySpline.h',
|
|
|
|
'nsSMILMappedAttribute.h',
|
|
|
|
'nsSMILMilestone.h',
|
|
|
|
'nsSMILNullType.h',
|
|
|
|
'nsSMILRepeatCount.h',
|
|
|
|
'nsSMILSetAnimationFunction.h',
|
|
|
|
'nsSMILTargetIdentifier.h',
|
|
|
|
'nsSMILTimeContainer.h',
|
2013-10-24 03:05:43 +04:00
|
|
|
'nsSMILTimedElement.h',
|
2013-04-16 23:24:43 +04:00
|
|
|
'nsSMILTimeValue.h',
|
|
|
|
'nsSMILTimeValueSpec.h',
|
|
|
|
'nsSMILTimeValueSpecParams.h',
|
|
|
|
'nsSMILTypes.h',
|
|
|
|
'nsSMILValue.h',
|
|
|
|
]
|
|
|
|
|
2014-02-28 18:58:43 +04:00
|
|
|
EXPORTS.mozilla.dom += [
|
|
|
|
'TimeEvent.h',
|
|
|
|
]
|
|
|
|
|
2013-11-20 20:29:04 +04:00
|
|
|
UNIFIED_SOURCES += [
|
2013-04-24 01:54:15 +04:00
|
|
|
'nsSMILAnimationController.cpp',
|
|
|
|
'nsSMILAnimationFunction.cpp',
|
2013-10-24 03:05:43 +04:00
|
|
|
'nsSMILCompositor.cpp',
|
2013-04-24 01:54:15 +04:00
|
|
|
'nsSMILCSSProperty.cpp',
|
|
|
|
'nsSMILCSSValueType.cpp',
|
|
|
|
'nsSMILFloatType.cpp',
|
|
|
|
'nsSMILInstanceTime.cpp',
|
|
|
|
'nsSMILInterval.cpp',
|
|
|
|
'nsSMILKeySpline.cpp',
|
|
|
|
'nsSMILMappedAttribute.cpp',
|
|
|
|
'nsSMILNullType.cpp',
|
|
|
|
'nsSMILParserUtils.cpp',
|
|
|
|
'nsSMILRepeatCount.cpp',
|
|
|
|
'nsSMILSetAnimationFunction.cpp',
|
|
|
|
'nsSMILTimeContainer.cpp',
|
2013-10-24 03:05:43 +04:00
|
|
|
'nsSMILTimedElement.cpp',
|
2013-04-24 01:54:15 +04:00
|
|
|
'nsSMILTimeValue.cpp',
|
|
|
|
'nsSMILTimeValueSpec.cpp',
|
|
|
|
'nsSMILValue.cpp',
|
2013-10-24 03:05:43 +04:00
|
|
|
'SMILBoolType.cpp',
|
|
|
|
'SMILEnumType.cpp',
|
|
|
|
'SMILIntegerType.cpp',
|
|
|
|
'SMILStringType.cpp',
|
2014-02-28 18:58:43 +04:00
|
|
|
'TimeEvent.cpp',
|
2013-04-24 01:54:15 +04:00
|
|
|
]
|
|
|
|
|
2013-08-22 10:55:59 +04:00
|
|
|
FAIL_ON_WARNINGS = True
|
|
|
|
|
2013-09-12 11:52:58 +04:00
|
|
|
LOCAL_INCLUDES += [
|
2014-01-03 05:49:22 +04:00
|
|
|
'/content/base/src',
|
|
|
|
'/content/svg/content/src',
|
2013-09-12 11:52:58 +04:00
|
|
|
'/layout/style',
|
|
|
|
]
|
2013-11-19 06:47:14 +04:00
|
|
|
|
|
|
|
FINAL_LIBRARY = 'gklayout'
|