# ***** 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 (Original Author) # Ben Turner # # 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_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_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 \ $(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_fileMozSlice.xul \ test_fileBlobPosting.xul \ test_filePosting.xul \ test_fileReaderSync.xul \ test_fileReaderSyncErrors.xul \ test_fileReadMozSlice.xul \ test_fileSubWorker.xul \ test_fileBlobSubWorker.xul \ file_worker.js \ fileBlob_worker.js \ fileMozSlice_worker.js \ filePosting_worker.js \ fileReaderSync_worker.js \ fileReaderSyncErrors_worker.js \ fileReadMozSlice_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) ifneq ($(OS_ARCH),WINNT) _TEST_FILES += \ test_closeOnGC.html \ closeOnGC_worker.js \ closeOnGC_server.sjs \ $(NULL) endif 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)