gecko-dev/startupcache/moz.build
Eric Rahm 5900bf90c0 Bug 1348991 - Use unified sources in startup cache. r=froydnj
The startup cache source files are incorrectly marked as using plarena.h, we
can make building them unified.

MozReview-Commit-ID: 2of2g4jCB4O
2017-03-21 12:24:41 -07:00

31 lines
688 B
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/.
with Files("**"):
BUG_COMPONENT = ("Core", "XPCOM")
if not CONFIG['MOZ_B2G']:
TEST_DIRS += ['test']
XPIDL_SOURCES += [
'nsIStartupCache.idl',
]
XPIDL_MODULE = 'startupcache'
EXPORTS.mozilla.scache += [
'StartupCache.h',
'StartupCacheUtils.h',
]
UNIFIED_SOURCES += [
'StartupCache.cpp',
'StartupCacheModule.cpp',
'StartupCacheUtils.cpp',
]
FINAL_LIBRARY = 'xul'