dom/quota/moz.build

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/dom/quota/moz.build	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,51 @@
     1.4 +# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
     1.5 +# vim: set filetype=python:
     1.6 +# This Source Code Form is subject to the terms of the Mozilla Public
     1.7 +# License, v. 2.0. If a copy of the MPL was not distributed with this
     1.8 +# file, You can obtain one at http://mozilla.org/MPL/2.0/.
     1.9 +
    1.10 +XPIDL_SOURCES += [
    1.11 +    'nsIQuotaManager.idl',
    1.12 +    'nsIQuotaRequest.idl',
    1.13 +    'nsIUsageCallback.idl',
    1.14 +]
    1.15 +
    1.16 +XPIDL_MODULE = 'dom_quota'
    1.17 +
    1.18 +EXPORTS += [
    1.19 +    'nsIOfflineStorage.h',
    1.20 +]
    1.21 +
    1.22 +EXPORTS.mozilla.dom.quota += [
    1.23 +    'AcquireListener.h',
    1.24 +    'ArrayCluster.h',
    1.25 +    'Client.h',
    1.26 +    'FileStreams.h',
    1.27 +    'OriginOrPatternString.h',
    1.28 +    'PersistenceType.h',
    1.29 +    'QuotaCommon.h',
    1.30 +    'QuotaManager.h',
    1.31 +    'QuotaObject.h',
    1.32 +    'StoragePrivilege.h',
    1.33 +    'UsageInfo.h',
    1.34 +    'Utilities.h',
    1.35 +]
    1.36 +
    1.37 +UNIFIED_SOURCES += [
    1.38 +    'CheckQuotaHelper.cpp',
    1.39 +    'FileStreams.cpp',
    1.40 +    'QuotaManager.cpp',
    1.41 +    'QuotaObject.cpp',
    1.42 +]
    1.43 +
    1.44 +FAIL_ON_WARNINGS = True
    1.45 +
    1.46 +MSVC_ENABLE_PGO = True
    1.47 +
    1.48 +include('/ipc/chromium/chromium-config.mozbuild')
    1.49 +
    1.50 +FINAL_LIBRARY = 'gklayout'
    1.51 +LOCAL_INCLUDES += [
    1.52 +    '/caps/include',
    1.53 +]
    1.54 +

mercurial