Backed out changeset 2450366cf7ca (bug 1891629) for causing win msix mochitest failures
[gecko.git] / dom / locks / moz.build
blobf6302e99e201ca351111a5115e2b8b0cd9693d15
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", "DOM: Core & HTML")
10 MOCHITEST_MANIFESTS += ["test/mochitest.toml"]
12 EXPORTS.mozilla.dom += [
13     "Lock.h",
14     "LockManager.h",
17 EXPORTS.mozilla.dom.locks += [
18     "IPCUtils.h",
19     "LockManagerChild.h",
20     "LockManagerParent.h",
21     "LockRequestChild.h",
22     "LockRequestParent.h",
25 UNIFIED_SOURCES += [
26     "Lock.cpp",
27     "LockManager.cpp",
28     "LockManagerChild.cpp",
29     "LockManagerParent.cpp",
30     "LockRequestChild.cpp",
31     "LockRequestParent.cpp",
34 IPDL_SOURCES += [
35     "PLockManager.ipdl",
36     "PLockRequest.ipdl",
39 include("/ipc/chromium/chromium-config.mozbuild")
41 FINAL_LIBRARY = "xul"