зеркало из https://github.com/mozilla/gecko-dev.git
55 строки
1.2 KiB
Python
55 строки
1.2 KiB
Python
# -*- Mode: python; 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/.
|
|
|
|
XPCSHELL_TESTS_MANIFESTS += ["test/unit/xpcshell.ini"]
|
|
|
|
TEST_HARNESS_FILES.xpcshell.toolkit.components.downloads.test.data += [
|
|
"test/data/empty.txt",
|
|
"test/data/source.txt",
|
|
]
|
|
|
|
XPIDL_SOURCES += [
|
|
"mozIDownloadPlatform.idl",
|
|
]
|
|
|
|
XPIDL_MODULE = "downloads"
|
|
|
|
CXXFLAGS += CONFIG["TK_CFLAGS"]
|
|
|
|
SOURCES += [
|
|
"DownloadPlatform.cpp",
|
|
]
|
|
|
|
if CONFIG["OS_ARCH"] == "WINNT":
|
|
LOCAL_INCLUDES += [
|
|
"/widget/windows",
|
|
]
|
|
|
|
EXTRA_JS_MODULES += [
|
|
"DownloadCore.jsm",
|
|
"DownloadIntegration.jsm",
|
|
"DownloadLegacy.jsm",
|
|
"DownloadList.jsm",
|
|
"DownloadPaths.jsm",
|
|
"Downloads.jsm",
|
|
"DownloadStore.jsm",
|
|
"DownloadUIHelper.jsm",
|
|
]
|
|
|
|
XPCOM_MANIFESTS += [
|
|
"components.conf",
|
|
]
|
|
|
|
if CONFIG["MOZ_PLACES"]:
|
|
EXTRA_JS_MODULES += [
|
|
"DownloadHistory.jsm",
|
|
]
|
|
|
|
FINAL_LIBRARY = "xul"
|
|
|
|
with Files("**"):
|
|
BUG_COMPONENT = ("Toolkit", "Downloads API")
|