mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
87bb64c61e
--HG-- rename : dom/workers/test/fileReadMozSlice_worker.js => dom/workers/test/fileReadSlice_worker.js rename : dom/workers/test/fileMozSlice_worker.js => dom/workers/test/fileSlice_worker.js rename : dom/workers/test/test_fileReadMozSlice.xul => dom/workers/test/test_fileReadSlice.xul rename : dom/workers/test/test_fileMozSlice.xul => dom/workers/test/test_fileSlice.xul
174 lines
5.1 KiB
Makefile
174 lines
5.1 KiB
Makefile
# ***** BEGIN LICENSE BLOCK *****
|
|
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
#
|
|
# The contents of this file are subject to the Mozilla Public License Version
|
|
# 1.1 (the "License"); you may not use this file except in compliance with
|
|
# the License. You may obtain a copy of the License at
|
|
# http://www.mozilla.org/MPL/
|
|
#
|
|
# Software distributed under the License is distributed on an "AS IS" basis,
|
|
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
# for the specific language governing rights and limitations under the
|
|
# License.
|
|
#
|
|
# The Original Code is worker threads.
|
|
#
|
|
# The Initial Developer of the Original Code is
|
|
# Mozilla Corporation
|
|
# Portions created by the Initial Developer are Copyright (C) 2008
|
|
# the Initial Developer. All Rights Reserved.
|
|
#
|
|
# Contributor(s):
|
|
# Vladimir Vukicevic <vladimir@pobox.com> (Original Author)
|
|
# Ben Turner <bent.mozilla@gmail.com>
|
|
#
|
|
# Alternatively, the contents of this file may be used under the terms of
|
|
# either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
# in which case the provisions of the GPL or the LGPL are applicable instead
|
|
# of those above. If you wish to allow use of your version of this file only
|
|
# under the terms of either the GPL or the LGPL, and not to allow others to
|
|
# use your version of this file under the terms of the MPL, indicate your
|
|
# decision by deleting the provisions above and replace them with the notice
|
|
# and other provisions required by the GPL or the LGPL. If you do not delete
|
|
# the provisions above, a recipient may use your version of this file under
|
|
# the terms of any one of the MPL, the GPL or the LGPL.
|
|
#
|
|
# ***** END LICENSE BLOCK *****
|
|
|
|
DEPTH = ../../..
|
|
topsrcdir = @top_srcdir@
|
|
srcdir = @srcdir@
|
|
VPATH = @srcdir@
|
|
|
|
relativesrcdir = dom/workers/test
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
DIRS = \
|
|
extensions \
|
|
$(NULL)
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
_TEST_FILES = \
|
|
test_404.html \
|
|
test_atob.html \
|
|
atob_worker.js \
|
|
test_blobWorkers.html \
|
|
test_close.html \
|
|
close_worker.js \
|
|
test_closeOnGC.html \
|
|
closeOnGC_worker.js \
|
|
closeOnGC_server.sjs \
|
|
test_dataURLWorker.html \
|
|
test_errorPropagation.html \
|
|
errorPropagation_iframe.html \
|
|
errorPropagation_worker.js \
|
|
test_eventDispatch.html \
|
|
eventDispatch_worker.js \
|
|
test_importScripts.html \
|
|
importScripts_worker.js \
|
|
importScripts_worker_imported1.js \
|
|
importScripts_worker_imported2.js \
|
|
importScripts_worker_imported3.js \
|
|
importScripts_worker_imported4.js \
|
|
test_json.html \
|
|
json_worker.js \
|
|
test_location.html \
|
|
location_worker.js \
|
|
test_longThread.html \
|
|
longThread_worker.js \
|
|
test_navigator.html \
|
|
navigator_worker.js \
|
|
test_recursion.html \
|
|
recursion_worker.js \
|
|
test_recursiveOnerror.html \
|
|
recursiveOnerror_worker.js \
|
|
test_relativeLoad.html \
|
|
relativeLoad_worker.js \
|
|
relativeLoad_worker2.js \
|
|
relativeLoad_import.js \
|
|
test_suspend.html \
|
|
suspend_iframe.html \
|
|
suspend_worker.js \
|
|
test_simpleThread.html \
|
|
simpleThread_worker.js \
|
|
test_terminate.html \
|
|
terminate_worker.js \
|
|
test_threadErrors.html \
|
|
threadErrors_worker1.js \
|
|
threadErrors_worker2.js \
|
|
threadErrors_worker3.js \
|
|
threadErrors_worker4.js \
|
|
test_threadTimeouts.html \
|
|
threadTimeouts_worker.js \
|
|
test_throwingOnerror.html \
|
|
throwingOnerror_worker.js \
|
|
test_xhr.html \
|
|
xhr_worker.js \
|
|
test_xhr2.html \
|
|
xhr2_worker.js \
|
|
test_xhrAbort.html \
|
|
xhrAbort_worker.js \
|
|
testXHR.txt \
|
|
test_fibonacci.html \
|
|
fibonacci_worker.js \
|
|
test_newError.html \
|
|
newError_worker.js \
|
|
test_chromeWorker.html \
|
|
WorkerTest_badworker.js \
|
|
test_workersDisabled.html \
|
|
workersDisabled_worker.js \
|
|
test_xhr_implicit_cancel.html \
|
|
xhr_implicit_cancel_worker.js \
|
|
$(NULL)
|
|
|
|
_SUBDIR_TEST_FILES = \
|
|
relativeLoad_sub_worker.js \
|
|
relativeLoad_sub_worker2.js \
|
|
relativeLoad_sub_import.js \
|
|
$(NULL)
|
|
|
|
_CHROME_TEST_FILES = \
|
|
test_chromeWorker.xul \
|
|
test_chromeWorkerJSM.xul \
|
|
test_extension.xul \
|
|
test_extensionBootstrap.xul \
|
|
test_file.xul \
|
|
test_fileSlice.xul \
|
|
test_fileBlobPosting.xul \
|
|
test_filePosting.xul \
|
|
test_fileReaderSync.xul \
|
|
test_fileReaderSyncErrors.xul \
|
|
test_fileReadSlice.xul \
|
|
test_fileSubWorker.xul \
|
|
test_fileBlobSubWorker.xul \
|
|
file_worker.js \
|
|
fileBlob_worker.js \
|
|
fileSlice_worker.js \
|
|
filePosting_worker.js \
|
|
fileReaderSync_worker.js \
|
|
fileReaderSyncErrors_worker.js \
|
|
fileReadSlice_worker.js \
|
|
fileSubWorker_worker.js \
|
|
fileBlobSubWorker_worker.js \
|
|
WorkerTest.jsm \
|
|
WorkerTest_worker.js \
|
|
WorkerTest_subworker.js \
|
|
chromeWorker_worker.js \
|
|
chromeWorker_subworker.js \
|
|
test_workersDisabled.xul \
|
|
workersDisabled_worker.js \
|
|
dom_worker_helper.js \
|
|
$(NULL)
|
|
|
|
libs:: $(_TEST_FILES)
|
|
$(INSTALL) $(foreach f,$^,"$f") $(DEPTH)/_tests/testing/mochitest/tests/$(relativesrcdir)
|
|
|
|
libs:: $(_SUBDIR_TEST_FILES)
|
|
$(INSTALL) $(foreach f,$^,"$f") $(DEPTH)/_tests/testing/mochitest/tests/$(relativesrcdir)/subdir
|
|
|
|
libs:: $(_CHROME_TEST_FILES)
|
|
$(INSTALL) $(foreach f,$^,"$f") $(DEPTH)/_tests/testing/mochitest/chrome/$(relativesrcdir)
|