Bug 1787371 test AudioContext.suspend() with navigation r=padenot
[gecko.git] / dom / cache / moz.build
blobdf9499f9c9965b31ae2db12214034180695b2432
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/.
8 with Files("**"):
9     BUG_COMPONENT = ("Core", "Storage: Cache API")
11 EXPORTS.mozilla.dom.cache += [
12     "Action.h",
13     "ActorChild.h",
14     "ActorUtils.h",
15     "AutoUtils.h",
16     "Cache.h",
17     "CacheChild.h",
18     "CacheCommon.h",
19     "CacheOpChild.h",
20     "CacheOpParent.h",
21     "CacheParent.h",
22     "CacheStorage.h",
23     "CacheStorageChild.h",
24     "CacheStorageParent.h",
25     "CacheStreamControlChild.h",
26     "CacheStreamControlParent.h",
27     "CacheWorkerRef.h",
28     "Connection.h",
29     "Context.h",
30     "DBAction.h",
31     "DBSchema.h",
32     "FileUtils.h",
33     "IPCUtils.h",
34     "Manager.h",
35     "ManagerId.h",
36     "PrincipalVerifier.h",
37     "QuotaClient.h",
38     "ReadStream.h",
39     "SavedTypes.h",
40     "StreamControl.h",
41     "StreamList.h",
42     "Types.h",
43     "TypeUtils.h",
46 UNIFIED_SOURCES += [
47     "Action.cpp",
48     "ActorChild.cpp",
49     "AutoUtils.cpp",
50     "Cache.cpp",
51     "CacheChild.cpp",
52     "CacheCommon.cpp",
53     "CacheOpChild.cpp",
54     "CacheOpParent.cpp",
55     "CacheParent.cpp",
56     "CacheStorage.cpp",
57     "CacheStorageChild.cpp",
58     "CacheStorageParent.cpp",
59     "CacheStreamControlChild.cpp",
60     "CacheStreamControlParent.cpp",
61     "CacheWorkerRef.cpp",
62     "Connection.cpp",
63     "Context.cpp",
64     "DBAction.cpp",
65     "DBSchema.cpp",
66     "FileUtils.cpp",
67     "Manager.cpp",
68     "ManagerId.cpp",
69     "PrincipalVerifier.cpp",
70     "QuotaClient.cpp",
71     "ReadStream.cpp",
72     "StreamControl.cpp",
73     "StreamList.cpp",
74     "TypeUtils.cpp",
77 IPDL_SOURCES += [
78     "CacheTypes.ipdlh",
79     "PCache.ipdl",
80     "PCacheOp.ipdl",
81     "PCacheStorage.ipdl",
82     "PCacheStreamControl.ipdl",
85 include("/ipc/chromium/chromium-config.mozbuild")
87 FINAL_LIBRARY = "xul"
89 MOCHITEST_MANIFESTS += [
90     "test/mochitest/mochitest.ini",
93 BROWSER_CHROME_MANIFESTS += [
94     "test/browser/browser.ini",
97 XPCSHELL_TESTS_MANIFESTS += [
98     "test/xpcshell/xpcshell.ini",