diff options
author | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-04-18 15:10:34 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-04-18 15:10:34 +0200 |
commit | e8f532de41c5462367486872e01f26d04dc669c8 (patch) | |
tree | 590e79828d1b3ab6d3f96a68fa72497d3c40a414 /dom/animation/moz.build | |
parent | 18ff59c25f0bbdf85a1a3ad8c77c9eed01dc3e67 (diff) | |
download | UXP-e8f532de41c5462367486872e01f26d04dc669c8.tar UXP-e8f532de41c5462367486872e01f26d04dc669c8.tar.gz UXP-e8f532de41c5462367486872e01f26d04dc669c8.tar.lz UXP-e8f532de41c5462367486872e01f26d04dc669c8.tar.xz UXP-e8f532de41c5462367486872e01f26d04dc669c8.zip |
Issue #80 - De-unify dom/animation
KeyFrameEffect and KeyFrameEffectReadOnly are still built unified as
buddies because they have some complex interdependency that couldn't
easily be resolved without linking failures.
Diffstat (limited to 'dom/animation/moz.build')
-rw-r--r-- | dom/animation/moz.build | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/dom/animation/moz.build b/dom/animation/moz.build index bd8c93707..356980f00 100644 --- a/dom/animation/moz.build +++ b/dom/animation/moz.build @@ -37,6 +37,11 @@ EXPORTS.mozilla += [ ] UNIFIED_SOURCES += [ + 'KeyframeEffect.cpp', + 'KeyframeEffectReadOnly.cpp', +] + +SOURCES += [ 'Animation.cpp', 'AnimationEffectReadOnly.cpp', 'AnimationEffectTiming.cpp', @@ -50,9 +55,7 @@ UNIFIED_SOURCES += [ 'DocumentTimeline.cpp', 'EffectCompositor.cpp', 'EffectSet.cpp', - 'KeyframeEffect.cpp', 'KeyframeEffectParams.cpp', - 'KeyframeEffectReadOnly.cpp', 'KeyframeUtils.cpp', 'PendingAnimationTracker.cpp', 'TimingParams.cpp', |