2016-07-14 19:16:42 +03:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2015-01-15 19:58:40 +03: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("**"):
|
|
|
|
BUG_COMPONENT = ("Core", "DOM")
|
|
|
|
|
2015-01-15 19:58:40 +03:00
|
|
|
EXPORTS.mozilla.dom += [
|
|
|
|
'BroadcastChannel.h',
|
|
|
|
]
|
|
|
|
|
2015-02-06 14:06:35 +03:00
|
|
|
UNIFIED_SOURCES += [
|
2015-01-15 19:58:40 +03:00
|
|
|
'BroadcastChannel.cpp',
|
|
|
|
'BroadcastChannelChild.cpp',
|
|
|
|
'BroadcastChannelParent.cpp',
|
|
|
|
'BroadcastChannelService.cpp',
|
|
|
|
]
|
|
|
|
|
|
|
|
IPDL_SOURCES += [
|
|
|
|
'PBroadcastChannel.ipdl',
|
|
|
|
]
|
|
|
|
|
|
|
|
MOCHITEST_MANIFESTS += ['tests/mochitest.ini']
|
2016-04-12 23:12:08 +03:00
|
|
|
BROWSER_CHROME_MANIFESTS += ['tests/browser.ini']
|
2015-01-15 19:58:40 +03:00
|
|
|
|
|
|
|
include('/ipc/chromium/chromium-config.mozbuild')
|
|
|
|
|
|
|
|
FINAL_LIBRARY = 'xul'
|