mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-05-26 14:30:27 +00:00
3dc3bde9f2
- Bug 524674, nsIEventListenerService: tracking of dynamically added and removed event listeners, r=masayuki (a1779bcaf)
- Bug 418986 - Resist fingerprinting by preventing exposure of screen and system info. r=mrbkap, r=heycam (97710708a)
- bug 1171785 create nsContentUtils::RunInStableState helper r=bholley (c71678a0e)
- bug 1172377 change RunInStableState API to receive ownership of nsIRunnable r=roc (3d5c72cac)
- bug 1171785 use nsContentUtils::RunInStableState() r=bholley (1c0acca87)
- Bug 1172784 (part 1) - Remove unused argument from UnmarkGrayJSListenersInCCGenerationDocuments(). r=mccr8. (a3a26ec9f)
- Bug 1172784 (part 2) - Remove PL_DHashTableEnumerate use from nsContentUtils. r=mccr8. (792b83f8e)
- Bug 1171832 - Remove PL_DHashTableEnumerator use from nsDocument. r=smaug. (eb265bb3a)
- Bug 819090 - Convert nsRefMapEntry::mRefContentList to nsTArray. r=froydnj (509060d38)
- Bug 819090 - Convert BroadcasterMapEntry::mListeners to nsTArray. r=froydnj (6b1bd7232)
- Bug 819090 - Convert nsDocument::mIdContentList to nsTArray. r=froydnj (41ebb3a64)
- Bug 819090 - Remove nsVoidArray.{cpp,h}. r=froydnj (6038b4fc7)
- Bug 1199143 - Inline heavyweight functions. r=shu (798a24e44)
- bug 1150136 - rel=preconnect from html parser r=hsivonen (1a078efcb)
- Bug 1135812 - Make picture element react to viewport changes. r=dbaron,johns (4b405d69c)
- add missing testcase (cb6c04747)
125 lines
2.8 KiB
INI
125 lines
2.8 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/.
|
|
|
|
with Files('nsString*'):
|
|
BUG_COMPONENT = ('Core', 'String')
|
|
|
|
DIRS += ['standalone']
|
|
|
|
# On win we build two glue libs - glue linked to crt dlls here and in staticruntime we build
|
|
# a statically linked glue lib.
|
|
if CONFIG['OS_ARCH'] == 'WINNT':
|
|
DIRS += ['staticruntime']
|
|
|
|
EXPORTS += [
|
|
'MainThreadUtils.h',
|
|
'nsArrayEnumerator.h',
|
|
'nsArrayUtils.h',
|
|
'nsBaseHashtable.h',
|
|
'nsCategoryCache.h',
|
|
'nsClassHashtable.h',
|
|
'nsCOMArray.h',
|
|
'nsComponentManagerUtils.h',
|
|
'nsCOMPtr.h',
|
|
'nsCRTGlue.h',
|
|
'nsCycleCollectionNoteChild.h',
|
|
'nsCycleCollectionNoteRootCallback.h',
|
|
'nsCycleCollectionParticipant.h',
|
|
'nsCycleCollectionTraversalCallback.h',
|
|
'nsDataHashtable.h',
|
|
'nsDebug.h',
|
|
'nsDeque.h',
|
|
'nsEnumeratorUtils.h',
|
|
'nsHashKeys.h',
|
|
'nsIClassInfoImpl.h',
|
|
'nsID.h',
|
|
'nsIInterfaceRequestorUtils.h',
|
|
'nsINIParser.h',
|
|
'nsInterfaceHashtable.h',
|
|
'nsISupportsImpl.h',
|
|
'nsISupportsUtils.h',
|
|
'nsIWeakReferenceUtils.h',
|
|
'nsJSThingHashtable.h',
|
|
'nsMemory.h',
|
|
'nsProxyRelease.h',
|
|
'nsQuickSort.h',
|
|
'nsRefPtrHashtable.h',
|
|
'nsServiceManagerUtils.h',
|
|
'nsStringAPI.h',
|
|
'nsStringGlue.h',
|
|
'nsTArray-inl.h',
|
|
'nsTArray.h',
|
|
'nsTArrayForwardDeclare.h',
|
|
'nsTextFormatter.h',
|
|
'nsTHashtable.h',
|
|
'nsThreadUtils.h',
|
|
'nsTObserverArray.h',
|
|
'nsTPriorityQueue.h',
|
|
'nsTWeakRef.h',
|
|
'nsVersionComparator.h',
|
|
'nsWeakReference.h',
|
|
'nsXPTCUtils.h',
|
|
'pldhash.h',
|
|
]
|
|
|
|
EXPORTS.mozilla += [
|
|
'AppData.h',
|
|
'AutoRestore.h',
|
|
'BlockingResourceBase.h',
|
|
'CondVar.h',
|
|
'DeadlockDetector.h',
|
|
'EnumeratedArrayCycleCollection.h',
|
|
'FileUtils.h',
|
|
'GenericFactory.h',
|
|
'IntentionalCrash.h',
|
|
'Logging.h',
|
|
'Monitor.h',
|
|
'Mutex.h',
|
|
'Observer.h',
|
|
'ReentrantMonitor.h',
|
|
]
|
|
|
|
include('objs.mozbuild')
|
|
|
|
SOURCES += xpcom_gluens_src_cppsrcs
|
|
SOURCES += xpcom_glue_src_cppsrcs
|
|
|
|
SOURCES += [
|
|
'GenericModule.cpp',
|
|
'nsStringAPI.cpp',
|
|
]
|
|
|
|
Library('xpcomglue_s')
|
|
|
|
SDK_LIBRARY = True
|
|
|
|
FORCE_STATIC_LIB = True
|
|
|
|
if CONFIG['_MSC_VER']:
|
|
DEFINES['_USE_ANSI_CPP'] = True
|
|
# Don't include directives about which CRT to use
|
|
CFLAGS += ['-Zl']
|
|
CXXFLAGS += ['-Zl']
|
|
|
|
LOCAL_INCLUDES += [
|
|
'../build',
|
|
]
|
|
|
|
if CONFIG['ENABLE_TESTS']:
|
|
DIRS += ['tests/gtest']
|
|
|
|
FAIL_ON_WARNINGS = True
|
|
|
|
# Include fallible for third party code using the xpcom glue
|
|
USE_LIBS += [
|
|
'fallible',
|
|
]
|
|
|
|
# Force to build a static library only
|
|
NO_EXPAND_LIBS = True
|
|
|
|
DIST_INSTALL = True
|