moz.build (765B)
1 # -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*- 2 # vim: set filetype=python: 3 # This Source Code Form is subject to the terms of the Mozilla Public 4 # License, v. 2.0. If a copy of the MPL was not distributed with this 5 # file, You can obtain one at http://mozilla.org/MPL/2.0/. 6 7 with Files("**"): 8 BUG_COMPONENT = ("Core", "XPCOM") 9 10 TEST_DIRS += ["test"] 11 BROWSER_CHROME_MANIFESTS += ["test/browser/browser.toml"] 12 13 EXPORTS.mozilla.scache += [ 14 "StartupCache.h", 15 "StartupCacheUtils.h", 16 ] 17 18 UNIFIED_SOURCES += [ 19 "StartupCache.cpp", 20 "StartupCacheInfo.cpp", 21 "StartupCacheUtils.cpp", 22 ] 23 24 XPCOM_MANIFESTS += [ 25 "components.conf", 26 ] 27 28 XPIDL_MODULE = "startupcache" 29 30 XPIDL_SOURCES += [ 31 "nsIStartupCacheInfo.idl", 32 ] 33 34 FINAL_LIBRARY = "xul"