2016-07-14 19:16:42 +03:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2014-05-13 11:22:12 +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/.
|
|
|
|
|
2017-01-29 14:51:47 +03:00
|
|
|
with Files("**"):
|
|
|
|
BUG_COMPONENT = ("Core", "DOM: Animation")
|
|
|
|
|
2014-05-13 11:22:13 +04:00
|
|
|
MOCHITEST_MANIFESTS += ['test/mochitest.ini']
|
2014-08-22 16:42:47 +04:00
|
|
|
MOCHITEST_CHROME_MANIFESTS += ['test/chrome.ini']
|
2014-05-13 11:22:13 +04:00
|
|
|
|
2014-05-13 11:22:12 +04:00
|
|
|
EXPORTS.mozilla.dom += [
|
2015-04-21 04:22:09 +03:00
|
|
|
'Animation.h',
|
2018-05-07 05:15:16 +03:00
|
|
|
'AnimationEffect.h',
|
2014-05-13 11:22:12 +04:00
|
|
|
'AnimationTimeline.h',
|
2016-02-02 01:49:00 +03:00
|
|
|
'CSSPseudoElement.h',
|
2015-04-10 04:34:22 +03:00
|
|
|
'DocumentTimeline.h',
|
2018-05-07 05:07:06 +03:00
|
|
|
'KeyframeEffect.h',
|
2014-05-13 11:22:12 +04:00
|
|
|
]
|
|
|
|
|
2014-12-18 02:42:41 +03:00
|
|
|
EXPORTS.mozilla += [
|
2015-06-09 05:13:54 +03:00
|
|
|
'AnimationComparator.h',
|
2018-01-27 15:17:27 +03:00
|
|
|
'AnimationEventDispatcher.h',
|
2016-03-04 11:54:25 +03:00
|
|
|
'AnimationPerformanceWarning.h',
|
2017-04-06 04:34:50 +03:00
|
|
|
'AnimationPropertySegment.h',
|
2016-04-28 18:22:43 +03:00
|
|
|
'AnimationTarget.h',
|
2015-04-10 04:34:22 +03:00
|
|
|
'AnimationUtils.h',
|
2016-03-22 02:11:05 +03:00
|
|
|
'ComputedTiming.h',
|
2015-11-02 00:41:00 +03:00
|
|
|
'ComputedTimingFunction.h',
|
2015-12-04 02:34:12 +03:00
|
|
|
'EffectCompositor.h',
|
2015-11-26 10:53:53 +03:00
|
|
|
'EffectSet.h',
|
2017-01-29 06:58:23 +03:00
|
|
|
'Keyframe.h',
|
2016-05-05 10:41:03 +03:00
|
|
|
'KeyframeEffectParams.h',
|
2016-03-22 10:20:37 +03:00
|
|
|
'KeyframeUtils.h',
|
2015-04-21 04:22:09 +03:00
|
|
|
'PendingAnimationTracker.h',
|
2019-04-18 09:49:25 +03:00
|
|
|
'PostRestyleMode.h',
|
2016-01-13 01:54:53 +03:00
|
|
|
'PseudoElementHashEntry.h',
|
2016-03-07 08:11:11 +03:00
|
|
|
'TimingParams.h',
|
2014-12-18 02:42:41 +03:00
|
|
|
]
|
|
|
|
|
2014-09-25 18:11:43 +04:00
|
|
|
UNIFIED_SOURCES += [
|
2015-04-21 04:22:09 +03:00
|
|
|
'Animation.cpp',
|
2018-05-07 05:15:16 +03:00
|
|
|
'AnimationEffect.cpp',
|
2018-01-27 15:17:27 +03:00
|
|
|
'AnimationEventDispatcher.cpp',
|
2016-03-04 11:54:25 +03:00
|
|
|
'AnimationPerformanceWarning.cpp',
|
2014-05-13 11:22:12 +04:00
|
|
|
'AnimationTimeline.cpp',
|
2015-12-04 02:32:53 +03:00
|
|
|
'AnimationUtils.cpp',
|
2015-11-02 00:41:00 +03:00
|
|
|
'ComputedTimingFunction.cpp',
|
2016-02-02 01:49:00 +03:00
|
|
|
'CSSPseudoElement.cpp',
|
2015-04-10 04:34:22 +03:00
|
|
|
'DocumentTimeline.cpp',
|
2015-12-04 02:34:12 +03:00
|
|
|
'EffectCompositor.cpp',
|
2015-11-26 10:53:53 +03:00
|
|
|
'EffectSet.cpp',
|
2018-05-07 05:07:06 +03:00
|
|
|
'KeyframeEffect.cpp',
|
2016-03-22 10:20:37 +03:00
|
|
|
'KeyframeUtils.cpp',
|
2015-04-21 04:22:09 +03:00
|
|
|
'PendingAnimationTracker.cpp',
|
2016-03-07 08:11:11 +03:00
|
|
|
'TimingParams.cpp',
|
2014-05-13 11:22:12 +04:00
|
|
|
]
|
|
|
|
|
2015-09-28 06:38:41 +03:00
|
|
|
LOCAL_INCLUDES += [
|
|
|
|
'/dom/base',
|
2016-01-06 05:04:05 +03:00
|
|
|
'/layout/base',
|
2016-01-06 05:04:05 +03:00
|
|
|
'/layout/style',
|
2015-09-28 06:38:41 +03:00
|
|
|
]
|
2015-09-29 07:22:24 +03:00
|
|
|
|
|
|
|
FINAL_LIBRARY = 'xul'
|