2016-07-14 19:16:42 +03:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2014-07-09 23:24:49 +04:00
|
|
|
# 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/.
|
|
|
|
|
2017-02-06 17:45:55 +03:00
|
|
|
with Files("**"):
|
2017-05-05 14:00:25 +03:00
|
|
|
BUG_COMPONENT = ("Core", "WebVR")
|
2017-02-06 17:45:55 +03:00
|
|
|
|
2014-07-09 23:24:49 +04:00
|
|
|
EXPORTS.mozilla.dom += [
|
2016-04-13 03:39:28 +03:00
|
|
|
'VRDisplay.h',
|
2016-10-19 01:18:10 +03:00
|
|
|
'VRDisplayEvent.h',
|
2016-07-05 01:46:49 +03:00
|
|
|
'VREventObserver.h',
|
2017-03-01 13:33:28 +03:00
|
|
|
'VRServiceTest.h'
|
2014-07-09 23:24:49 +04:00
|
|
|
]
|
|
|
|
|
|
|
|
UNIFIED_SOURCES = [
|
2016-04-13 03:39:28 +03:00
|
|
|
'VRDisplay.cpp',
|
2016-10-19 01:18:10 +03:00
|
|
|
'VRDisplayEvent.cpp',
|
2016-07-05 01:46:49 +03:00
|
|
|
'VREventObserver.cpp',
|
2017-03-01 13:33:28 +03:00
|
|
|
'VRServiceTest.cpp'
|
2014-07-09 23:24:49 +04:00
|
|
|
]
|
|
|
|
|
|
|
|
include('/ipc/chromium/chromium-config.mozbuild')
|
|
|
|
|
|
|
|
FINAL_LIBRARY = 'xul'
|
|
|
|
LOCAL_INCLUDES += [
|
|
|
|
'/dom/base'
|
|
|
|
]
|
2017-03-01 19:00:23 +03:00
|
|
|
|
2017-05-05 14:00:25 +03:00
|
|
|
MOCHITEST_MANIFESTS += ['test/mochitest/mochitest.ini']
|
|
|
|
REFTEST_MANIFESTS += ['test/reftest/reftest.list']
|