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-02-23 16:01:45 +03:00
|
|
|
with Files("**"):
|
|
|
|
BUG_COMPONENT = ("Core", "XPCOM")
|
|
|
|
|
2017-08-09 00:41:09 +03:00
|
|
|
TEST_DIRS += ["test"]
|
2019-05-25 05:07:26 +03:00
|
|
|
BROWSER_CHROME_MANIFESTS += ["test/browser/browser.ini"]
|
2013-03-12 21:17:46 +04:00
|
|
|
|
2013-04-16 23:24:43 +04:00
|
|
|
EXPORTS.mozilla.scache += [
|
|
|
|
"StartupCache.h",
|
|
|
|
"StartupCacheUtils.h",
|
|
|
|
]
|
|
|
|
|
2017-03-21 22:24:41 +03:00
|
|
|
UNIFIED_SOURCES += [
|
2013-04-24 01:54:15 +04:00
|
|
|
"StartupCache.cpp",
|
2020-04-02 22:40:39 +03:00
|
|
|
"StartupCacheInfo.cpp",
|
2013-04-24 01:54:15 +04:00
|
|
|
"StartupCacheUtils.cpp",
|
|
|
|
]
|
|
|
|
|
2020-04-02 22:40:39 +03:00
|
|
|
XPCOM_MANIFESTS += [
|
|
|
|
"components.conf",
|
|
|
|
]
|
|
|
|
|
|
|
|
XPIDL_MODULE = "startupcache"
|
|
|
|
|
|
|
|
XPIDL_SOURCES += [
|
|
|
|
"nsIStartupCacheInfo.idl",
|
|
|
|
]
|
|
|
|
|
2021-01-28 01:53:54 +03:00
|
|
|
if CONFIG["MOZ_BACKGROUNDTASKS"]:
|
|
|
|
DEFINES["MOZ_BACKGROUNDTASKS"] = True
|
|
|
|
|
2013-11-19 06:47:14 +04:00
|
|
|
FINAL_LIBRARY = "xul"
|