2014-05-13 11:22:12 +04:00
|
|
|
# -*- 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/.
|
|
|
|
|
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 += [
|
2014-08-10 11:06:46 +04:00
|
|
|
'Animation.h',
|
2014-08-22 16:42:47 +04:00
|
|
|
'AnimationEffect.h',
|
2014-08-10 11:06:44 +04:00
|
|
|
'AnimationPlayer.h',
|
2014-05-13 11:22:12 +04:00
|
|
|
'AnimationTimeline.h',
|
|
|
|
]
|
|
|
|
|
2014-09-25 18:11:43 +04:00
|
|
|
UNIFIED_SOURCES += [
|
2014-08-10 11:06:46 +04:00
|
|
|
'Animation.cpp',
|
2014-08-22 16:42:47 +04:00
|
|
|
'AnimationEffect.cpp',
|
2014-08-10 11:06:44 +04:00
|
|
|
'AnimationPlayer.cpp',
|
2014-05-13 11:22:12 +04:00
|
|
|
'AnimationTimeline.cpp',
|
|
|
|
]
|
|
|
|
|
|
|
|
FAIL_ON_WARNINGS = True
|
|
|
|
|
2014-07-23 03:37:51 +04:00
|
|
|
FINAL_LIBRARY = 'xul'
|