2016-07-14 19:16:42 +03:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-26 00:47:23 +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-03-09 13:33:31 +03:00
|
|
|
with Files('**'):
|
|
|
|
BUG_COMPONENT = ('Core', 'Networking: JAR')
|
|
|
|
|
2013-02-26 00:47:23 +04:00
|
|
|
if CONFIG['MOZ_ZIPWRITER']:
|
|
|
|
DIRS += ['zipwriter']
|
|
|
|
|
2015-02-10 19:47:27 +03:00
|
|
|
MOCHITEST_MANIFESTS += ['test/mochitest/mochitest.ini']
|
|
|
|
|
|
|
|
XPCSHELL_TESTS_MANIFESTS += ['test/unit/xpcshell.ini']
|
2013-03-12 21:17:46 +04:00
|
|
|
|
|
|
|
XPIDL_SOURCES += [
|
2013-06-25 19:19:04 +04:00
|
|
|
'nsIJARChannel.idl',
|
|
|
|
'nsIJARURI.idl',
|
|
|
|
'nsIZipReader.idl',
|
2013-03-12 21:17:46 +04:00
|
|
|
]
|
|
|
|
|
2013-11-19 06:47:43 +04:00
|
|
|
XPIDL_MODULE = 'jar'
|
2013-03-19 22:47:00 +04:00
|
|
|
|
2013-04-16 23:24:43 +04:00
|
|
|
EXPORTS += [
|
2019-02-26 18:29:37 +03:00
|
|
|
'nsJARProtocolHandler.h',
|
2013-04-16 23:24:43 +04:00
|
|
|
'nsJARURI.h',
|
|
|
|
'nsZipArchive.h',
|
2013-05-03 20:54:45 +04:00
|
|
|
'zipstruct.h',
|
2013-04-16 23:24:43 +04:00
|
|
|
]
|
2013-04-24 01:54:15 +04:00
|
|
|
|
2013-11-13 10:30:37 +04:00
|
|
|
UNIFIED_SOURCES += [
|
2019-10-10 17:07:06 +03:00
|
|
|
'MmapFaultHandler.cpp',
|
2013-06-25 19:19:04 +04:00
|
|
|
'nsJAR.cpp',
|
|
|
|
'nsJARChannel.cpp',
|
|
|
|
'nsJARInputStream.cpp',
|
2017-04-05 21:16:43 +03:00
|
|
|
'nsJARProtocolHandler.cpp',
|
|
|
|
'nsJARURI.cpp',
|
2013-06-25 19:19:04 +04:00
|
|
|
'nsZipArchive.cpp',
|
2013-04-24 01:54:15 +04:00
|
|
|
]
|
|
|
|
|
2019-01-25 02:49:33 +03:00
|
|
|
XPCOM_MANIFESTS += [
|
|
|
|
'components.conf',
|
|
|
|
]
|
|
|
|
|
2013-10-02 21:17:55 +04:00
|
|
|
include('/ipc/chromium/chromium-config.mozbuild')
|
|
|
|
|
2013-11-19 06:47:14 +04:00
|
|
|
FINAL_LIBRARY = 'xul'
|