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 += [
|
2015-04-21 04:22:09 +03:00
|
|
|
'Animation.h',
|
2015-04-30 16:06:43 +03:00
|
|
|
'AnimationEffectReadOnly.h',
|
2014-05-13 11:22:12 +04:00
|
|
|
'AnimationTimeline.h',
|
2015-04-10 04:34:22 +03:00
|
|
|
'DocumentTimeline.h',
|
2015-04-15 02:48:21 +03:00
|
|
|
'KeyframeEffect.h',
|
2014-05-13 11:22:12 +04:00
|
|
|
]
|
|
|
|
|
2014-12-18 02:42:41 +03:00
|
|
|
EXPORTS.mozilla += [
|
2015-06-09 05:13:54 +03:00
|
|
|
'AnimationComparator.h',
|
2015-04-10 04:34:22 +03:00
|
|
|
'AnimationUtils.h',
|
2016-01-06 05:04:06 +03:00
|
|
|
'AnimValuesStyleRule.h',
|
2015-11-02 00:41:00 +03:00
|
|
|
'ComputedTimingFunction.h',
|
2015-12-04 02:34:12 +03:00
|
|
|
'EffectCompositor.h',
|
2015-11-26 10:53:53 +03:00
|
|
|
'EffectSet.h',
|
2015-04-21 04:22:09 +03:00
|
|
|
'PendingAnimationTracker.h',
|
2014-12-18 02:42:41 +03:00
|
|
|
]
|
|
|
|
|
2014-09-25 18:11:43 +04:00
|
|
|
UNIFIED_SOURCES += [
|
2015-04-21 04:22:09 +03:00
|
|
|
'Animation.cpp',
|
2015-04-30 16:06:43 +03:00
|
|
|
'AnimationEffectReadOnly.cpp',
|
2014-05-13 11:22:12 +04:00
|
|
|
'AnimationTimeline.cpp',
|
2015-12-04 02:32:53 +03:00
|
|
|
'AnimationUtils.cpp',
|
2016-01-06 05:04:06 +03:00
|
|
|
'AnimValuesStyleRule.cpp',
|
2015-11-02 00:41:00 +03:00
|
|
|
'ComputedTimingFunction.cpp',
|
2015-04-10 04:34:22 +03:00
|
|
|
'DocumentTimeline.cpp',
|
2015-12-04 02:34:12 +03:00
|
|
|
'EffectCompositor.cpp',
|
2015-11-26 10:53:53 +03:00
|
|
|
'EffectSet.cpp',
|
2015-04-15 02:48:21 +03:00
|
|
|
'KeyframeEffect.cpp',
|
2015-04-21 04:22:09 +03:00
|
|
|
'PendingAnimationTracker.cpp',
|
2014-05-13 11:22:12 +04:00
|
|
|
]
|
|
|
|
|
2015-09-28 06:38:41 +03:00
|
|
|
LOCAL_INCLUDES += [
|
|
|
|
'/dom/base',
|
2016-01-06 05:04:05 +03:00
|
|
|
'/layout/base',
|
2016-01-06 05:04:05 +03:00
|
|
|
'/layout/style',
|
2015-09-28 06:38:41 +03:00
|
|
|
]
|
2015-09-29 07:22:24 +03:00
|
|
|
|
|
|
|
FINAL_LIBRARY = 'xul'
|
|
|
|
|
|
|
|
if CONFIG['GNU_CXX']:
|
|
|
|
CXXFLAGS += ['-Wshadow']
|