1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/dom/workers/moz.build Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,67 @@ 1.4 +# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*- 1.5 +# vim: set filetype=python: 1.6 +# This Source Code Form is subject to the terms of the Mozilla Public 1.7 +# License, v. 2.0. If a copy of the MPL was not distributed with this 1.8 +# file, You can obtain one at http://mozilla.org/MPL/2.0/. 1.9 + 1.10 +TEST_DIRS += ['test'] 1.11 + 1.12 +# Public stuff. 1.13 +EXPORTS.mozilla.dom += [ 1.14 + 'WorkerPrivate.h', 1.15 + 'WorkerRunnable.h', 1.16 + 'WorkerScope.h', 1.17 +] 1.18 + 1.19 +EXPORTS.mozilla.dom.workers += [ 1.20 + 'Workers.h', 1.21 +] 1.22 + 1.23 +# Stuff needed for the bindings, not really public though. 1.24 +EXPORTS.mozilla.dom.workers.bindings += [ 1.25 + 'FileReaderSync.h', 1.26 + 'Location.h', 1.27 + 'MessagePort.h', 1.28 + 'Navigator.h', 1.29 + 'SharedWorker.h', 1.30 + 'URL.h', 1.31 + 'WorkerFeature.h', 1.32 + 'XMLHttpRequest.h', 1.33 + 'XMLHttpRequestUpload.h', 1.34 +] 1.35 + 1.36 +SOURCES += [ 1.37 + 'ChromeWorkerScope.cpp', 1.38 + 'File.cpp', 1.39 + 'FileReaderSync.cpp', 1.40 + 'Location.cpp', 1.41 + 'MessagePort.cpp', 1.42 + 'Navigator.cpp', 1.43 + 'Principal.cpp', 1.44 + 'RegisterBindings.cpp', 1.45 + 'RuntimeService.cpp', 1.46 + 'ScriptLoader.cpp', 1.47 + 'SharedWorker.cpp', 1.48 + 'URL.cpp', 1.49 + 'WorkerPrivate.cpp', 1.50 + 'WorkerRunnable.cpp', 1.51 + 'WorkerScope.cpp', 1.52 + 'XMLHttpRequest.cpp', 1.53 + 'XMLHttpRequestUpload.cpp', 1.54 +] 1.55 + 1.56 +FAIL_ON_WARNINGS = True 1.57 + 1.58 +MSVC_ENABLE_PGO = True 1.59 + 1.60 +LOCAL_INCLUDES += [ 1.61 + '../base', 1.62 + '../system', 1.63 + '/content/base/src', 1.64 + '/xpcom/build', 1.65 + '/xpcom/threads', 1.66 +] 1.67 + 1.68 +include('/ipc/chromium/chromium-config.mozbuild') 1.69 + 1.70 +FINAL_LIBRARY = 'gklayout'