Bug 1908539 restrict MacOS platform audio processing to Nightly r=webrtc-reviewers...
[gecko.git] / dom / quota / moz.build
blobb0f8c3f3169d7fad49f3ed22ea789e3c22b6f787
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/.
7 with Files("**"):
8     BUG_COMPONENT = ("Core", "Storage: Quota Manager")
10 DIRS += ["test"]
12 XPIDL_SOURCES += [
13     "nsIQuotaCallbacks.idl",
14     "nsIQuotaManagerService.idl",
15     "nsIQuotaRequests.idl",
16     "nsIQuotaResults.idl",
19 XPIDL_MODULE = "dom_quota"
21 EXPORTS.mozilla += [
22     "StorageOriginAttributes.h",
25 EXPORTS.mozilla.dom += [
26     "QMResult.h",
27     "StorageManager.h",
30 EXPORTS.mozilla.dom.quota += [
31     "ActorsParent.h",
32     "Assertions.h",
33     "AssertionsImpl.h",
34     "CachingDatabaseConnection.h",
35     "CheckedUnsafePtr.h",
36     "CipherKeyManager.h",
37     "CipherStrategy.h",
38     "Client.h",
39     "ClientImpl.h",
40     "CommonMetadata.h",
41     "Config.h",
42     "Constants.h",
43     "DebugOnlyMacro.h",
44     "DecryptingInputStream.h",
45     "DecryptingInputStream_impl.h",
46     "DirectoryLock.h",
47     "DirectoryLockCategory.h",
48     "DirectoryLockInlines.h",
49     "DummyCipherStrategy.h",
50     "EncryptedBlock.h",
51     "EncryptingOutputStream.h",
52     "EncryptingOutputStream_impl.h",
53     "ErrorHandling.h",
54     "FileStreams.h",
55     "FileUtils.h",
56     "FirstInitializationAttempts.h",
57     "FirstInitializationAttemptsImpl.h",
58     "ForwardDecls.h",
59     "InitializationTypes.h",
60     "IPCStreamCipherStrategy.h",
61     "NSSCipherStrategy.h",
62     "OriginOperationCallbacks.h",
63     "OriginScope.h",
64     "PersistenceType.h",
65     "PromiseUtils.h",
66     "QuotaCommon.h",
67     "QuotaManager.h",
68     "QuotaManagerImpl.h",
69     "QuotaManagerService.h",
70     "QuotaObject.h",
71     "QuotaParent.h",
72     "RemoteQuotaObjectChild.h",
73     "RemoteQuotaObjectParent.h",
74     "RemoteQuotaObjectParentTracker.h",
75     "RemoveParen.h",
76     "ResultExtensions.h",
77     "ScopedLogExtraInfo.h",
78     "SerializationHelpers.h",
79     "StorageHelpers.h",
80     "StreamUtils.h",
81     "StringifyUtils.h",
82     "ThreadUtils.h",
83     "UsageInfo.h",
86 XPCOM_MANIFESTS += [
87     "components.conf",
90 UNIFIED_SOURCES += [
91     "ActorsChild.cpp",
92     "ActorsParent.cpp",
93     "Assertions.cpp",
94     "CachingDatabaseConnection.cpp",
95     "CanonicalQuotaObject.cpp",
96     "Client.cpp",
97     "ClientUsageArray.cpp",
98     "DecryptingInputStream.cpp",
99     "DirectoryLockImpl.cpp",
100     "EncryptingOutputStream.cpp",
101     "FileStreams.cpp",
102     "FileUtils.cpp",
103     "GroupInfo.cpp",
104     "GroupInfoPair.cpp",
105     "InitializationTypes.cpp",
106     "NormalOriginOperationBase.cpp",
107     "nsIndexedDBProtocolHandler.cpp",
108     "NSSCipherStrategy.cpp",
109     "OriginInfo.cpp",
110     "OriginOperationBase.cpp",
111     "OriginOperations.cpp",
112     "OriginParser.cpp",
113     "PersistenceType.cpp",
114     "PromiseUtils.cpp",
115     "QMResult.cpp",
116     "QuotaCommon.cpp",
117     "QuotaManagerService.cpp",
118     "QuotaObject.cpp",
119     "QuotaParent.cpp",
120     "QuotaRequestBase.cpp",
121     "QuotaRequests.cpp",
122     "QuotaResults.cpp",
123     "QuotaUsageRequestBase.cpp",
124     "RemoteQuotaObject.cpp",
125     "RemoteQuotaObjectChild.cpp",
126     "RemoteQuotaObjectParent.cpp",
127     "SanitizationUtils.cpp",
128     "ScopedLogExtraInfo.cpp",
129     "StorageHelpers.cpp",
130     "StorageManager.cpp",
131     "StorageOriginAttributes.cpp",
132     "StreamUtils.cpp",
133     "StringifyUtils.cpp",
134     "ThreadUtils.cpp",
137 IPDL_SOURCES += [
138     "IPCQuotaObject.ipdlh",
139     "PQuota.ipdl",
140     "PQuotaRequest.ipdl",
141     "PQuotaUsageRequest.ipdl",
142     "PRemoteQuotaObject.ipdl",
145 include("/ipc/chromium/chromium-config.mozbuild")
147 FINAL_LIBRARY = "xul"
149 LOCAL_INCLUDES += [
150     "/caps",
151     "/dom/fs/include",