diff options
author | Moonchild <moonchild@palemoon.org> | 2020-06-11 12:43:17 +0000 |
---|---|---|
committer | Moonchild <moonchild@palemoon.org> | 2020-06-11 12:43:17 +0000 |
commit | 1620ec19653125db78f380043a52b6da6a34c281 (patch) | |
tree | c90e02dc5548034f6d3846d6442218a6acda70f4 /dom/abort/moz.build | |
parent | fdc11c731c0d0176c4522f1eb8b1d390d6505c6d (diff) | |
download | uxp-1620ec19653125db78f380043a52b6da6a34c281.tar.gz |
Issue #1587 - Part 6: Move FetchController/Signal to its own dir
Since it is specced separately from fetch.
Diffstat (limited to 'dom/abort/moz.build')
-rw-r--r-- | dom/abort/moz.build | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/dom/abort/moz.build b/dom/abort/moz.build new file mode 100644 index 0000000000..e7d8146e55 --- /dev/null +++ b/dom/abort/moz.build @@ -0,0 +1,26 @@ +# -*- 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", "DOM") + +TEST_DIRS += ['tests'] + +EXPORTS.mozilla.dom += [ + 'FetchController.h', + 'FetchSignal.h', +] + +UNIFIED_SOURCES += [ + 'FetchController.cpp', + 'FetchSignal.cpp', +] + +LOCAL_INCLUDES += [ + '../workers', +] + +FINAL_LIBRARY = 'xul' |