2016-07-14 16:16:42 +00:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-25 20:47:23 +00: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 13:01:45 +00:00
|
|
|
with Files("**"):
|
|
|
|
BUG_COMPONENT = ("Core", "XPCOM")
|
|
|
|
|
2017-08-08 21:41:09 +00:00
|
|
|
TEST_DIRS += ['test']
|
2019-05-25 02:07:26 +00:00
|
|
|
BROWSER_CHROME_MANIFESTS += ['test/browser/browser.ini']
|
2013-03-12 17:17:46 +00:00
|
|
|
|
2013-04-16 19:24:43 +00:00
|
|
|
EXPORTS.mozilla.scache += [
|
|
|
|
'StartupCache.h',
|
|
|
|
'StartupCacheUtils.h',
|
|
|
|
]
|
|
|
|
|
2017-03-21 19:24:41 +00:00
|
|
|
UNIFIED_SOURCES += [
|
2013-04-23 21:54:15 +00:00
|
|
|
'StartupCache.cpp',
|
|
|
|
'StartupCacheUtils.cpp',
|
|
|
|
]
|
|
|
|
|
2013-11-19 02:47:14 +00:00
|
|
|
FINAL_LIBRARY = 'xul'
|