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