Ms2ger
|
4922ccbc0a
|
Bug 904831 - Part b: Move unconditional MSVC_ENABLE_PGO definitions into moz.build; r=gps
|
2013-08-22 08:56:01 +02:00 |
|
Ms2ger
|
c3e345584c
|
Bug 883284 - Part f: Move LIBXUL_LIBRARY into moz.build (p-z); r=glandium
|
2013-08-22 08:56:01 +02:00 |
|
Ms2ger
|
8ccdba4aa0
|
Bug 906412 - Cleanup some random parts of the build system; r=mshal
|
2013-08-22 08:55:59 +02:00 |
|
Adrian Lungu
|
ce17eab05d
|
Bug 849204 - Linux geolocation: Init dbus_threads from the main thread. r=karlt
|
2013-08-21 03:03:16 -07:00 |
|
David Anderson
|
6ef84f269e
|
Force OMTC on when enabling multi-process tabs (bug 897502, r=ncameron).
|
2013-08-19 00:13:32 -07:00 |
|
Mark Hammond
|
331f00138b
|
Bug 904323 - use NS_DebugBreak() on Windows instead of sleeping to debug child processes. r=bent
|
2013-08-17 09:38:17 +10:00 |
|
Bill McCloskey
|
a293b393e4
|
Bug 902208 - Handle SIGINT in child processes (r=ted)
|
2013-08-14 14:48:32 -07:00 |
|
Brian O'Keefe
|
3a92f0ae7c
|
Bug 896177 - Remove useless config.mk includes; r=gps
|
2013-07-17 16:06:53 -04:00 |
|
Ms2ger
|
a04009b5b7
|
Merge latest PGO-green inbounc changeset to m-c.
|
2013-08-14 14:45:47 +02:00 |
|
Ms2ger
|
93933b0de8
|
Bug 897909 - Cleanup some SIMPLE_PROGRAMS; r=gps
* * *
FOLD
|
2013-08-14 09:00:13 +02:00 |
|
Ehsan Akhgari
|
7ed6731ca6
|
Bug 904001 - Blocklist the old Relevant Knowledge DLLs; r=vlad
|
2013-08-13 13:27:21 -04:00 |
|
Nicholas Nethercote
|
b756f6b258
|
Bug 898914 (part 1) - Remove JSBool.
--HG--
extra : rebase_source : 2d202e0e5005a7f54724b1540481c15cde3ad52e
|
2013-08-08 15:53:04 -07:00 |
|
Ryan VanderMeulen
|
c62035af12
|
Bug 901963 - Fix crash in mozilla::plugins::PluginInstanceChild::SetWindowLongPtrWHook on Win64. r=ehsan
|
2013-08-07 15:32:28 -04:00 |
|
Makoto Kato
|
4fca05b447
|
Bug 899026 - some API hooks don't work on Windows 8 x64. r=ehsan
|
2013-08-05 11:13:53 +09:00 |
|
Makoto Kato
|
d01eaad14a
|
Bug 900436 - WindowsDllNopSpacePatcher doesn't work on Windows 8. r=ehsan
|
2013-08-02 10:35:25 +09:00 |
|
Makoto Kato
|
918601170b
|
Bug 899009 - TestDllInterceptor.exe crashes after hooking NtWriteFile on Windows 8 + MSVS2012. r=ehsan
|
2013-07-31 10:23:32 +09:00 |
|
Ehsan Akhgari
|
5ee21d6d3f
|
Bug 895322 - Part 1: Replace the usages of MOZ_STATIC_ASSERT with C++11 static_assert; r=Waldo
This patch was mostly generated by running the following scripts on the codebase, with some
manual changes made afterwards:
# static_assert.sh
#!/bin/bash
# Command to convert an NSPR integer type to the equivalent standard integer type
function convert() {
echo "Converting $1 to $2..."
find . ! -wholename "*nsprpub*" \
! -wholename "*security/nss*" \
! -wholename "*/.hg*" \
! -wholename "obj-ff-dbg*" \
! -name nsXPCOMCID.h \
! -name prtypes.h \
-type f \
\( -iname "*.cpp" \
-o -iname "*.h" \
-o -iname "*.cc" \
-o -iname "*.mm" \) | \
xargs -n 1 `dirname $0`/assert_replacer.py #sed -i -e "s/\b$1\b/$2/g"
}
convert MOZ_STATIC_ASSERT static_assert
hg rev --no-backup mfbt/Assertions.h \
media/webrtc/signaling/src/sipcc/core/includes/ccapi.h \
modules/libmar/src/mar_private.h \
modules/libmar/src/mar.h
# assert_replacer.py
#!/usr/bin/python
import sys
import re
pattern = re.compile(r"\bMOZ_STATIC_ASSERT\b")
def replaceInPlace(fname):
print fname
f = open(fname, "rw+")
lines = f.readlines()
for i in range(0, len(lines)):
while True:
index = re.search(pattern, lines[i])
if index != None:
index = index.start()
lines[i] = lines[i][0:index] + "static_assert" + lines[i][index+len("MOZ_STATIC_ASSERT"):]
for j in range(i + 1, len(lines)):
if lines[j].find(" ", index) == index:
lines[j] = lines[j][0:index] + lines[j][index+4:]
else:
break
else:
break
f.seek(0, 0)
f.truncate()
f.write("".join(lines))
f.close()
argc = len(sys.argv)
for i in range(1, argc):
replaceInPlace(sys.argv[i])
--HG--
extra : rebase_source : 4b4a4047d82f2c205b9fad8d56dfc3f1afc0b045
|
2013-07-18 13:59:53 -04:00 |
|
Ehsan Akhgari
|
9854ac6166
|
Bug 872127 - Part 2: Replace mozilla/StandardInteger.h with stdint.h; r=Waldo,ted
|
2013-07-30 10:25:31 -04:00 |
|
Joshua Cranmer
|
48e91a819c
|
Bug 884061 - Part 3v: Use NS_DECL_THREADSAFE_ISUPPORTS in toolkit/, r=Mossop
--HG--
extra : rebase_source : ad2b2f20219b42b192c313b6fa9da3383f904805
|
2013-07-18 21:24:15 -05:00 |
|
Suyash Agarwal
|
2b129e9864
|
Bug 890037 - Remove extra space from the output of "thunderbird -version". r=bsmedberg
|
2013-07-18 16:29:17 -04:00 |
|
Mike Shal
|
576f2400a5
|
Bug 889787 - Define XP_LINUX globally; r=ted
|
2013-07-16 17:10:10 -04:00 |
|
Tom Schuster
|
8bbf6da92b
|
Bug 886903 - Send correct UserAgent data for content process. r=jdm
|
2013-04-22 18:41:59 +02:00 |
|
Ryan VanderMeulen
|
5131a6768c
|
Backed out 4 changesets (bug 893858, bug 868859, bug 886903) for Linux debug mochitest-other crashes on a CLOSED TREE.
Backed out changeset 0ded4854067b (bug 886903)
Backed out changeset ca8afb897e13 (bug 893858)
Backed out changeset c15f503a96cc (bug 868859)
Backed out changeset 6a788f399a7f (bug 868859)
|
2013-07-17 12:43:59 -04:00 |
|
Tom Schuster
|
b42a1584ea
|
Bug 886903 - Send correct UserAgent data for content process. r=jdm
|
2013-04-22 18:41:59 +02:00 |
|
Brian O'Keefe
|
a2b1403eb0
|
Bug 883502 - Part 1: Move 'chromium_config.mk' includes after rules.mk. r=gps
|
2013-07-04 08:28:43 -04:00 |
|
Benoit Girard
|
5b43ee14ca
|
Bug 892861 - Remove useless -D flags 'IMPL_THEBES,_IMPL_NS_GFX,...'. r=glandium
|
2013-07-12 08:56:54 -04:00 |
|
Trevor Saunders
|
82e5558b37
|
bug 887483 - remove a bunch of useless assignments to FORCE_STATIC_LIB implied by LIBXUL_LIBRARY=1 r=mshal
|
2013-07-11 11:06:34 -04:00 |
|
Roberta De Viti
|
52924c0d96
|
Bug 865188 - Remove Storage support for profile special database. r=mak
|
2013-07-11 10:00:48 +02:00 |
|
Ryan VanderMeulen
|
c9d5a706a1
|
Backed out changeset b7d6458d2a3c (bug 887483) for apparently causing Android robocop-2 failures.
|
2013-07-10 13:51:28 -04:00 |
|
Trevor Saunders
|
c3f96258c3
|
bug 887483 - rm a bunch of useless assignments to FORCE_STATIC_LIB r=mshal
|
2013-06-25 14:29:26 -04:00 |
|
Emanuel Hoogeveen
|
a278970cd3
|
Bug 890714 - Fix mixed line endings. r=joe, r=jesup
|
2013-07-08 16:33:15 -04:00 |
|
David Anderson
|
e90c94517c
|
Rewrite CPOWs to use one actor per process (bug 853209, r=billm,bholley,smaug).
|
2013-07-03 00:24:32 -07:00 |
|
Trevor Saunders
|
94c311ea83
|
bug 886526 - remove nsStaticComponents.{h,cpp} r=bsmedberg
|
2013-06-15 05:50:25 -04:00 |
|
Trevor Saunders
|
555efd0eb9
|
bug 886526 - remove XPCOM_TRANSLATE_NSGM_ENTRY_POINT r=bsmedberg
|
2013-06-15 02:33:35 -04:00 |
|
Benoit Girard
|
7853228760
|
Bug 844288 - Dual link libxul.so and libxul-unit.so and replace enable-gtest by enable-test r=ted,glandium
- Remove enable GTest
- Add a general target to create gtestxul
- Update mach target
- Run GTest from make check
--HG--
rename : gfx/2d/unittest/GTestMain.cpp => gfx/tests/gtest/TestMoz2D.cpp
rename : gfx/layers/TestTiledLayerBuffer.cpp => gfx/tests/gtest/TestTiledLayerBuffer.cpp
extra : rebase_source : 862c39b9145328c8e9f85ae9d1963af374af76f1
|
2013-03-11 14:47:40 -04:00 |
|
Makoto Kato
|
5c5983cb16
|
Bug 870218 - Add support for hooking NtWriteFile on Win64; r=ehsan
|
2013-06-12 15:22:55 -04:00 |
|
Brian R. Bondy
|
aabcdd7c84
|
Bug 874323 - Start updater manually for Metro to apply update. r=rstrong
|
2013-06-12 10:31:10 -04:00 |
|
Martin Stransky
|
9386e8c35b
|
Bug 877626 - Port GTK2 to GTK3 - build config - xpcom, toolkit, accessible, xulrunner dirs. r=ted, r=karlt
|
2013-06-10 08:36:26 -04:00 |
|
Mark Hammond
|
bbab339664
|
Bug 875214 - child processes on Windows now attach to the parent's console. r=aklotz
|
2013-05-30 23:23:50 +10:00 |
|
Phil Ringnalda
|
29fb49d007
|
Back out dc76402b8471 (bug 844288) on suspicion of breaking dep builds
CLOSED TREE
|
2013-05-31 07:39:56 -07:00 |
|
Benoit Girard
|
6adb6cba1f
|
Bug 844288 - Dual link libxul.so and libxul-unit.so and replace enable-gtest by enable-test r=ted,glandium
- Remove enable GTest
- Add a general target to create gtestxul
- Update mach target
- Run GTest from make check
--HG--
rename : gfx/2d/unittest/GTestMain.cpp => gfx/tests/gtest/TestMoz2D.cpp
rename : gfx/layers/TestTiledLayerBuffer.cpp => gfx/tests/gtest/TestTiledLayerBuffer.cpp
extra : rebase_source : 5b9be0892323195d4e24f11ae785f0663ff38fd0
|
2013-03-11 14:47:40 -04:00 |
|
Timothy Arceri
|
961ec3a003
|
Bug 877409 - Remove old GTK_CHECK_VERSION/gtk_check_version for versions of GTK already covered by the minimum GTK build requirement 2.10. r=karlt
|
2013-05-30 08:10:02 -04:00 |
|
Phil Ringnalda
|
68025a3c2f
|
Back out 816311e43409 (bug 844288) on suspicion of causing dep OS X universal builds to fail in packaging
CLOSED TREE
|
2013-05-29 23:42:20 -07:00 |
|
Benoit Girard
|
9bd97dc15d
|
Bug 844288 - Dual link libxul.so and libxul-unit.so and replace enable-gtest by enable-test r=ted,glandium
- Remove enable GTest
- Add a general target to create gtestxul
- Update mach target
- Run GTest from make check
--HG--
rename : gfx/2d/unittest/GTestMain.cpp => gfx/tests/gtest/TestMoz2D.cpp
rename : gfx/layers/TestTiledLayerBuffer.cpp => gfx/tests/gtest/TestTiledLayerBuffer.cpp
extra : rebase_source : 04c9c2efbc7db1c04c121cf3022612b488f83eb4
|
2013-03-11 14:47:40 -04:00 |
|
Julian Seward
|
004a71f006
|
Bug 872496 - Allow early registration of stack tops, to improve native unwind quality. r=bgirard.
|
2013-05-28 14:03:38 +02:00 |
|
Mike Shal
|
994cfe0b6b
|
Bug 864774 - Part 2: Move CPPSRCS to moz.build as CPP_SOURCES; r=joey CLOSED TREE
From 9e0ba7f425143f545eb6c4b26a9a96b5ade4d8e9 Mon Sep 17 00:00:00 2001
|
2013-04-23 17:54:15 -04:00 |
|
Brian R. Bondy
|
c8186a880d
|
Bug 794937 - Updater callback should launch Metro Firefox when updating from Metro Firefox. r=rstrong
|
2013-05-22 10:16:56 -04:00 |
|
Ted Mielczarek
|
110919af49
|
bug 871712 - make MSVC PGO opt-in per-directory, and opt-in in the directories that matter. r=glandium
|
2013-05-16 09:33:26 -04:00 |
|
Brian R. Bondy
|
d5554c645a
|
Bug 572162 - Use TaskbarIDs hash as update dir root. r=rstrong
|
2013-05-15 10:58:09 -07:00 |
|
Ed Morley
|
36fb30076b
|
Backed out changeset 496846474ed3 (bug 864774)
|
2013-05-13 10:05:49 +01:00 |
|