diff options
author | Moonchild <moonchild@palemoon.org> | 2020-06-11 12:43:17 +0000 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-06-13 11:52:17 +0200 |
commit | 29bca891d5ca243774a7355fc3a6a68903f0d596 (patch) | |
tree | ec5a36a57a179b811642c0ee5636ffd3005adc67 /dom/abort/moz.build | |
parent | bb7060582934f087b71702d1e83f762d5fd6f0af (diff) | |
download | UXP-29bca891d5ca243774a7355fc3a6a68903f0d596.tar UXP-29bca891d5ca243774a7355fc3a6a68903f0d596.tar.gz UXP-29bca891d5ca243774a7355fc3a6a68903f0d596.tar.lz UXP-29bca891d5ca243774a7355fc3a6a68903f0d596.tar.xz UXP-29bca891d5ca243774a7355fc3a6a68903f0d596.zip |
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 000000000..e7d8146e5 --- /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' |