mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-05-26 14:18:48 +00:00
95440d2f99
- Bug 1166847 followup: Add 'override' annotation to some new overriding methods in jswrapper.h. rs=ehsan (20a3e9857) - pointer style (b13f08224) - Bug 1201271 - Warn about unused results for more methods of nsTArray. r=froydnj (c8fa9e836) - Bug 1156398: Pass ProcessOrientation.cpp's unused-by-default bools to mozilla::unused. r=mwu (e1200be54) - Bug 1159124 - Suppress -Wunused-exception-parameter warning in nsClipboard.mm. r=spohl (dc3c4c4d0) - Bug 1152921 - Always initialize platform-specific booleans in PrintData before sending over IPC. r=mconley (45fb8cf07) - Bug 1091112 - Serialize nsIPrintSettings options bitfield. r=jimm (17d38b152) - Bug 1091112 - Add OS X-specific members to PrintData IPDL struct. r=jimm (62182eb24) - Bug 1091112 - Proxy opening the print dialog on OS X to the parent. r=mstange (adf38a12a) - Bug 1204398 - Fix -Wshadow warnings in widget/cocoa. r=spohl (9c4f43861) - missing bits of Bug 1193038: Purposely leak StatisticsReport object and suppress the leak report r=glandium,mccr8,njn (cc0c1a908) - Bug 1144580 - Whitelist pselect6 in content seccomp-bpf policy. r=kang (144c67d00) - Bug 1144514 - Whitelist pread64 in content seccomp-bpf policy. r=kang (c01f7f65c) - Bug 1055310 - Step 1: Convert seccomp-bpf policies to Chromium PolicyCompiler. r=kang (8fbf648ba) - Bug 1055310 - Step 2: Move SIGSYS handling to Chromium TrapRegistry. r=kang (e80ff13a6) - Bug 1055310 - Step 3: Move syscall interceptions into SandboxFilter.cpp. r=kang (59c0b2454) - Bug 1004011 - Support SECCOMP_FILTER_FLAG_TSYNC if available. r=kang (cf97070a9) - Bug 1198334 (part 1) - Replace the opt-in FAIL_ON_WARNINGS with the opt-out ALLOW_COMPILER_WARNINGS. r=glandium. (c9df97498) - Bug 1189125 - Allow xpcshell to use GTK (r=karlt) (e363a27aa) - Bug 830801 - Part 1. Set NOMINMAX define as default. r=mshal (88fa52e9e) - Bug 830801 - Part 3. Remove NOMINMAX define from cpp source. r=mshal (c841b399f) - Bug 1169433 - Remove UnicharSelfTest and turn NormalizationTest into a gtest. r=glandium,smontagu (625dcaf32) - Bug 1170072 - Part 1. Make GetCharProps1 as static function. r=jfkthame (6ab8b7c4f) - Bug 1183209 patch 2: update data generation tools to Unicode 8, r=jfkthame (78e91de20) - Bug 1183209 patch 3: update generated data files to Unicode 8, and adapt internal XIDMOD types to the new types in Unicode's xidmodifications.txt, r=jfkthame (c9fea054f)
127 lines
3.0 KiB
INI
127 lines
3.0 KiB
INI
# -*- Mode: python; c-basic-offset: 4; 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/.
|
|
|
|
# Public stuff.
|
|
EXPORTS.mozilla.dom += [
|
|
'ServiceWorkerCommon.h',
|
|
'ServiceWorkerContainer.h',
|
|
'ServiceWorkerEvents.h',
|
|
'ServiceWorkerRegistrar.h',
|
|
'ServiceWorkerRegistration.h',
|
|
'WorkerPrivate.h',
|
|
'WorkerRunnable.h',
|
|
'WorkerScope.h',
|
|
]
|
|
|
|
EXPORTS.mozilla.dom.workers += [
|
|
'ServiceWorkerManager.h',
|
|
'ServiceWorkerPeriodicUpdater.h',
|
|
'WorkerDebuggerManager.h',
|
|
'Workers.h',
|
|
]
|
|
|
|
# Stuff needed for the bindings, not really public though.
|
|
EXPORTS.mozilla.dom.workers.bindings += [
|
|
'DataStore.h',
|
|
'DataStoreCursor.h',
|
|
'FileReaderSync.h',
|
|
'Location.h',
|
|
'MessagePort.h',
|
|
'Navigator.h',
|
|
'Performance.h',
|
|
'ServiceWorker.h',
|
|
'ServiceWorkerClient.h',
|
|
'ServiceWorkerClients.h',
|
|
'ServiceWorkerWindowClient.h',
|
|
'SharedWorker.h',
|
|
'URL.h',
|
|
'WorkerFeature.h',
|
|
'XMLHttpRequest.h',
|
|
'XMLHttpRequestUpload.h',
|
|
]
|
|
|
|
XPIDL_MODULE = 'dom_workers'
|
|
|
|
XPIDL_SOURCES += [
|
|
'nsIWorkerDebugger.idl',
|
|
'nsIWorkerDebuggerManager.idl',
|
|
]
|
|
|
|
UNIFIED_SOURCES += [
|
|
'ChromeWorkerScope.cpp',
|
|
'DataStore.cpp',
|
|
'DataStoreCursor.cpp',
|
|
'FileReaderSync.cpp',
|
|
'Location.cpp',
|
|
'MessagePort.cpp',
|
|
'Navigator.cpp',
|
|
'Performance.cpp',
|
|
'Principal.cpp',
|
|
'RegisterBindings.cpp',
|
|
'RuntimeService.cpp',
|
|
'ScriptLoader.cpp',
|
|
'ServiceWorker.cpp',
|
|
'ServiceWorkerClient.cpp',
|
|
'ServiceWorkerClients.cpp',
|
|
'ServiceWorkerContainer.cpp',
|
|
'ServiceWorkerEvents.cpp',
|
|
'ServiceWorkerManager.cpp',
|
|
'ServiceWorkerManagerChild.cpp',
|
|
'ServiceWorkerManagerParent.cpp',
|
|
'ServiceWorkerManagerService.cpp',
|
|
'ServiceWorkerPeriodicUpdater.cpp',
|
|
'ServiceWorkerRegistrar.cpp',
|
|
'ServiceWorkerRegistration.cpp',
|
|
'ServiceWorkerScriptCache.cpp',
|
|
'ServiceWorkerWindowClient.cpp',
|
|
'SharedWorker.cpp',
|
|
'URL.cpp',
|
|
'WorkerDebuggerManager.cpp',
|
|
'WorkerPrivate.cpp',
|
|
'WorkerRunnable.cpp',
|
|
'WorkerScope.cpp',
|
|
'WorkerThread.cpp',
|
|
'XMLHttpRequest.cpp',
|
|
'XMLHttpRequestUpload.cpp',
|
|
]
|
|
|
|
IPDL_SOURCES += [
|
|
'PServiceWorkerManager.ipdl',
|
|
'ServiceWorkerRegistrarTypes.ipdlh',
|
|
]
|
|
|
|
LOCAL_INCLUDES += [
|
|
'../base',
|
|
'../system',
|
|
'/dom/base',
|
|
'/xpcom/build',
|
|
'/xpcom/threads',
|
|
]
|
|
|
|
include('/ipc/chromium/chromium-config.mozbuild')
|
|
|
|
FINAL_LIBRARY = 'xul'
|
|
|
|
TEST_DIRS += [
|
|
'test/extensions/bootstrap',
|
|
'test/extensions/traditional',
|
|
]
|
|
|
|
MOCHITEST_MANIFESTS += [
|
|
'test/fetch/mochitest.ini',
|
|
'test/mochitest.ini',
|
|
'test/serviceworkers/mochitest.ini',
|
|
]
|
|
|
|
MOCHITEST_CHROME_MANIFESTS += [
|
|
'test/chrome.ini',
|
|
'test/serviceworkers/chrome.ini'
|
|
]
|
|
|
|
XPCSHELL_TESTS_MANIFESTS += ['test/xpcshell/xpcshell.ini']
|
|
|
|
TEST_DIRS += ['test/gtest']
|