Bug 1892041 - Part 1: Update test262 features. r=spidermonkey-reviewers,dminor
[gecko.git] / dom / animation / moz.build
blobfeca2775dc35b845503ef22d7438f69658a8978b
1 # -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
2 # vim: set filetype=python:
3 # This Source Code Form is subject to the terms of the Mozilla Public
4 # License, v. 2.0. If a copy of the MPL was not distributed with this
5 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
7 with Files("**"):
8     BUG_COMPONENT = ("Core", "DOM: Animation")
10 MOCHITEST_MANIFESTS += ["test/mochitest.toml"]
11 MOCHITEST_CHROME_MANIFESTS += ["test/chrome.toml"]
13 EXPORTS.mozilla.dom += [
14     "Animation.h",
15     "AnimationEffect.h",
16     "AnimationTimeline.h",
17     "CSSAnimation.h",
18     "CSSPseudoElement.h",
19     "CSSTransition.h",
20     "DocumentTimeline.h",
21     "KeyframeEffect.h",
22     "ScrollTimeline.h",
23     "ViewTimeline.h",
26 EXPORTS.mozilla += [
27     "AnimationComparator.h",
28     "AnimationEventDispatcher.h",
29     "AnimationPerformanceWarning.h",
30     "AnimationPropertySegment.h",
31     "AnimationTarget.h",
32     "AnimationUtils.h",
33     "ComputedTiming.h",
34     "EffectCompositor.h",
35     "EffectSet.h",
36     "ElementAnimationData.h",
37     "Keyframe.h",
38     "KeyframeEffectParams.h",
39     "KeyframeUtils.h",
40     "PostRestyleMode.h",
41     "PseudoElementHashEntry.h",
42     "ScrollTimelineAnimationTracker.h",
43     "TimingParams.h",
46 UNIFIED_SOURCES += [
47     "Animation.cpp",
48     "AnimationEffect.cpp",
49     "AnimationEventDispatcher.cpp",
50     "AnimationPerformanceWarning.cpp",
51     "AnimationTimeline.cpp",
52     "AnimationUtils.cpp",
53     "CSSAnimation.cpp",
54     "CSSPseudoElement.cpp",
55     "CSSTransition.cpp",
56     "DocumentTimeline.cpp",
57     "EffectCompositor.cpp",
58     "EffectSet.cpp",
59     "ElementAnimationData.cpp",
60     "KeyframeEffect.cpp",
61     "KeyframeUtils.cpp",
62     "ScrollTimeline.cpp",
63     "ScrollTimelineAnimationTracker.cpp",
64     "TimingParams.cpp",
65     "ViewTimeline.cpp",
68 LOCAL_INCLUDES += [
69     "/dom/base",
70     "/layout/base",
71     "/layout/painting",
72     "/layout/style",
75 include("/ipc/chromium/chromium-config.mozbuild")
77 FINAL_LIBRARY = "xul"