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