2014-05-13 07:22:12 +00: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 07:22:13 +00:00
|
|
|
MOCHITEST_MANIFESTS += ['test/mochitest.ini']
|
2014-08-22 12:42:47 +00:00
|
|
|
MOCHITEST_CHROME_MANIFESTS += ['test/chrome.ini']
|
2014-05-13 07:22:13 +00:00
|
|
|
|
2014-05-13 07:22:12 +00:00
|
|
|
EXPORTS.mozilla.dom += [
|
2014-08-10 07:06:46 +00:00
|
|
|
'Animation.h',
|
2014-08-22 12:42:47 +00:00
|
|
|
'AnimationEffect.h',
|
2014-08-10 07:06:44 +00:00
|
|
|
'AnimationPlayer.h',
|
2014-05-13 07:22:12 +00:00
|
|
|
'AnimationTimeline.h',
|
|
|
|
]
|
|
|
|
|
2014-12-17 23:42:41 +00:00
|
|
|
EXPORTS.mozilla += [
|
|
|
|
'PendingPlayerTracker.h',
|
|
|
|
]
|
|
|
|
|
2014-09-25 14:11:43 +00:00
|
|
|
UNIFIED_SOURCES += [
|
2014-08-10 07:06:46 +00:00
|
|
|
'Animation.cpp',
|
2014-08-22 12:42:47 +00:00
|
|
|
'AnimationEffect.cpp',
|
2014-08-10 07:06:44 +00:00
|
|
|
'AnimationPlayer.cpp',
|
2014-05-13 07:22:12 +00:00
|
|
|
'AnimationTimeline.cpp',
|
2014-12-17 23:42:41 +00:00
|
|
|
'PendingPlayerTracker.cpp',
|
2014-05-13 07:22:12 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
FAIL_ON_WARNINGS = True
|
|
|
|
|
2014-07-22 23:37:51 +00:00
|
|
|
FINAL_LIBRARY = 'xul'
|