2013-04-01 22:36:59 +04:00
|
|
|
# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-26 00:47:20 +04:00
|
|
|
# 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/.
|
|
|
|
|
|
|
|
TEST_DIRS += ['test']
|
2013-03-19 22:47:00 +04:00
|
|
|
|
|
|
|
MODULE = 'dom'
|
|
|
|
|
2013-04-16 23:24:43 +04:00
|
|
|
# Public stuff.
|
|
|
|
EXPORTS.mozilla.dom.workers += [
|
|
|
|
'Workers.h',
|
|
|
|
]
|
|
|
|
|
|
|
|
# Stuff needed for the bindings, not really public though.
|
|
|
|
EXPORTS.mozilla.dom.workers.bindings += [
|
|
|
|
'DOMBindingBase.h',
|
|
|
|
'EventListenerManager.h',
|
|
|
|
'EventTarget.h',
|
|
|
|
'FileReaderSync.h',
|
2013-07-24 11:41:55 +04:00
|
|
|
'Location.h',
|
2013-07-24 11:38:23 +04:00
|
|
|
'Navigator.h',
|
2013-04-16 23:24:43 +04:00
|
|
|
'URL.h',
|
|
|
|
'WorkerFeature.h',
|
|
|
|
'XMLHttpRequest.h',
|
|
|
|
'XMLHttpRequestEventTarget.h',
|
|
|
|
'XMLHttpRequestUpload.h',
|
|
|
|
]
|
|
|
|
|
2013-04-24 01:54:15 +04:00
|
|
|
CPP_SOURCES += [
|
|
|
|
'ChromeWorkerScope.cpp',
|
|
|
|
'DOMBindingBase.cpp',
|
|
|
|
'EventListenerManager.cpp',
|
|
|
|
'EventTarget.cpp',
|
|
|
|
'Events.cpp',
|
|
|
|
'File.cpp',
|
|
|
|
'FileReaderSync.cpp',
|
|
|
|
'Location.cpp',
|
|
|
|
'Navigator.cpp',
|
|
|
|
'Principal.cpp',
|
|
|
|
'RuntimeService.cpp',
|
|
|
|
'ScriptLoader.cpp',
|
|
|
|
'URL.cpp',
|
|
|
|
'Worker.cpp',
|
|
|
|
'WorkerPrivate.cpp',
|
|
|
|
'WorkerScope.cpp',
|
|
|
|
'XMLHttpRequest.cpp',
|
|
|
|
'XMLHttpRequestEventTarget.cpp',
|
|
|
|
'XMLHttpRequestUpload.cpp',
|
|
|
|
]
|
|
|
|
|
2013-06-17 23:21:01 +04:00
|
|
|
LIBRARY_NAME = 'domworkers_s'
|
|
|
|
|
2013-08-22 10:55:59 +04:00
|
|
|
FAIL_ON_WARNINGS = True
|
|
|
|
|
2013-08-22 10:56:00 +04:00
|
|
|
LIBXUL_LIBRARY = True
|
|
|
|
|
2013-08-22 10:56:01 +04:00
|
|
|
MSVC_ENABLE_PGO = True
|
|
|
|
|
2013-09-13 20:25:21 +04:00
|
|
|
LOCAL_INCLUDES += [
|
|
|
|
'../base',
|
|
|
|
'../system',
|
|
|
|
'/content/base/src',
|
|
|
|
'/content/events/src',
|
|
|
|
'/xpcom/build',
|
|
|
|
]
|