gecko/dom/animation/moz.build
Brian Birtles ff9dbee0c4 Bug 1040543 part 3 - Add Animation interface; r=bz
This patch adds the Animation interface and adds a 'source' attribute to
AnimationPlayer that refers to this class.
2014-08-10 17:06:46 +10:00

24 lines
594 B
Python

# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
# 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/.
MOCHITEST_MANIFESTS += ['test/mochitest.ini']
EXPORTS.mozilla.dom += [
'Animation.h',
'AnimationPlayer.h',
'AnimationTimeline.h',
]
SOURCES += [
'Animation.cpp',
'AnimationPlayer.cpp',
'AnimationTimeline.cpp',
]
FAIL_ON_WARNINGS = True
FINAL_LIBRARY = 'xul'