Граф коммитов

386032 Коммитов

Автор SHA1 Сообщение Дата
Jonathan Kew 3cc2e09e3d Bug 1066160 pt 2 - Include Brotli in the gecko build. r=gps 2014-10-04 10:02:24 +01:00
Jonathan Kew fe6360eb70 Bug 1066160 pt 1 - Import the Brotli decoder source (commit d9a74803fa884559879e3205cfe6f257a2d85519) from upstream. r=gps 2014-10-04 10:02:21 +01:00
Jonathan Kew 1067b1654b Backed out changesets c42b68e0db15 and 6e2c7dd63fcf (bug 879717) due to mochitest orange. 2014-10-04 09:52:22 +01:00
Dan Glastonbury 4ffb153247 Bug 1075305 - WebGL2 - convert BaseTexFormat() to use strong GL types.; r=bjacob
--HG--
extra : rebase_source : dc805b06ca0758aea3ec0a3727816011aac83186
extra : source : 8a155fbe61b62b4be3f4e82bf6e9c39446d910c3
2014-09-30 14:03:29 +10:00
Dan Glastonbury b6117c9d45 Bug 1075305 - Sort strong GL type TexFormat.; r=:bjacob
--HG--
extra : rebase_source : b2429b3a5ca0257541d0de35863c7279eed5061f
extra : source : dcbe7e7b4728325e68a133bfc4a9e61f2e7d6b3c
2014-10-02 17:23:37 +10:00
Dan Glastonbury c7adc4e4fe Bug 1075305 - WebGL2 - remove WebGL prefix from WebGLTexture::ImageInfo.; r=bjacob
--HG--
extra : rebase_source : f724d3f293f83f8e905175e1be6e9f6987e58454
extra : source : dc6fbe00f4d764b7f02818667addf12f038b72f3
2014-09-30 13:50:00 +10:00
Dan Glastonbury 97e4f7f9a6 Bug 1705305 - Rename WebGLTexture::ImageInfo::WebGLFormat to WebGLTexture::ImageInfo::WebGLInternalFormat.; r=bjacob
--HG--
extra : rebase_source : 72cb9f5d79b6c349697f107ff1689a421cefbe66
extra : source : ccc10059a97fe9a9fd684cbdb553c75c6403808c
2014-07-15 09:55:33 +10:00
zhoubcfan@163.com 567fb422f4 Bug 1076926 - Add windows 10 support to exe manifest. r=jimm 2014-10-04 14:43:01 +09:00
Andreas Pehrson eedf1ceec5 Bug 879717 - Part 2. Avoid autoplaying stream-backed HTMLMediaElements blocking indefinitely. r=roc 2014-10-03 21:38:03 +02:00
Robert O'Callahan 542119cc82 Bug 879717. Part 1. Delay entering HAVE_CURRENT_DATA state until a video frame has been stored in the image container. r=cpearce 2013-06-18 14:17:29 +12:00
Carsten "Tomcat" Book a2860b969c Backed out changeset 1d484a770816 (bug 1060936) for breaking non-unified builds 2014-10-04 05:55:31 +02:00
Mike Hommey 75a8d98fa3 Bug 1077228 - Include the right autoconf.mk in GLOBAL_DEPS. r=mshal
Ever since bug 969164, the js build system, when building gecko (not when
building standalone) uses a autoconf-js.mk file for its config.

One of the suboptimal ways we have to retrigger builds when the build
configuration changes (changes to e.g. configure.in can do that) is to
make most things depend on autoconf.mk. Which unfortunately doesn't
account for the fact the js/src subdirectory uses a different file.

In practice, this means that some classes of changes to the js build
system, not accompanied with toplevel build system changes may no
trigger the corresponding rebuilds in the js subtree on incremental
builds.
2014-10-04 10:34:35 +09:00
Mike Hommey ce2e710e2e Bug 1077214 - Don't export DLLFLAGS from main configure. r=mshal
DLLFLAGS was exported from main configure so that it would be picked by NSPR
configure, allowing to pass down flags to link NSPR against mozglue. With
MOZ_FOLD_LIBS always enabled on MSVC builds, that is not necessary anymore
since the NSPR build system doesn't build any shared library anymore.
2014-10-04 10:34:13 +09:00
Mike Hommey ca69fe623e Bug 1077212 - Move MOZ_FOLD_LIBS to configure. r=mshal
Setting MOZ_FOLD_LIBS should stop being an opt-in for individual applications,
which also makes them responsible for doing the right thing, which happens not
to be the case for B2G Desktop Linux builds.

Enforcing MOZ_FOLD_LIBS to be set on the relevant platforms in configure ensures
everything is setup up correctly, and also allows to stop caring about supporting
now hypothetical e.g. MSVC builds without MOZ_FOLD_LIBS (which require to pass
DLLFLAGS down to the nspr build system to make nspr built against mozglue which
would now be unnecessary)
2014-10-04 10:33:46 +09:00
Mike Hommey 8c10235da0 Bug 1077151 - Always use expandlibs descriptors when they exist. r=mshal
Currently, when there is both an expandlibs descriptor and an actual static
library, expandlibs picks the static library. This has the side effect that
if there are object files in the static library that aren't directly used,
they're dropped when linking, even when they export symbols that would be
exported in the final linked binary.

In most cases in the code base, files are not dropped that way. The most
notable counter-example is xpcomglue, where actually not dropping files
leads to link failure because of missing symbols those files reference
(yes, that would tend to say the glue is broken in some way).

On the opposite side, there is mozglue, which does have both a descriptor
and a static library (the latter being necessary for the SDK), and that
linking as a static library drops files that shouldn't be dropped (like
jemalloc). We're currently relying on -Wl,--whole-archive for those files
not to be dropped, but that won't really be possible without much hassle
in a world where mozglue dependencies live in moz.build land.

Switching expandlibs to use descriptors when they exist, even when there
is a static library (so, the opposite of the current behavior) allows to
drop -Wl,--whole-archive and prepare for a better future. However, as
mentioned, xpcomglue does still require to be linked through the static
library, so we need to make it a static library only.

To achieve that, we make NO_EXPAND_LIBS now actually mean no expandlibs
and use that to build the various different xpcomglues.
2014-10-04 10:33:00 +09:00
Mike Hommey 53ac2c146b Bug 1077132 - Force ELF hash style to System V when building with MOZ_LINKER. r=nfroyd 2014-10-04 10:32:27 +09:00
Mike Hommey 2466a02679 Bug 1077135 - Ensure logging initialization for early log messages in the linker. r=nfroyd 2014-10-04 10:31:49 +09:00
Mike Hommey 5331094bbb Bug 1077135 - Initialize ElfLoader::DebuggerHelper::firstAdded. r=nfroyd 2014-10-04 10:31:38 +09:00
William Chen 11d279ad66 Bug 1076784 - Don't remove binding when shadow root host is removed from tree. r=smaug 2014-10-03 18:32:05 -07:00
Tanvi Vyas be1c699bac Bug 1076978 - Favicons should be categorized as TYPE_IMAGE. r=jimm 2014-10-03 17:23:36 -07:00
Jed Davis 5043e01249 Bug 1068410 - Convert remote crash dump to use pipe instead of socketpair in the child. r=kang r=ted 2014-10-03 14:55:03 -07:00
Jed Davis aaac17ba60 Bug 1068410 - Remove procfs-searching workaround for credential-passing bug. r=ted 2014-10-03 14:55:03 -07:00
Dan Gohman fd7f734997 Bug 1071047 - IonMonkey: Make RemoveUnmarkedBlocks clear the loop header flags of unmarked blocks r=shu 2014-10-03 14:48:48 -07:00
Dan Gohman 6dce4c8727 Bug 1073478 - IonMonkey: Commute SIMD binary operators r=bbouvier 2014-10-03 14:34:39 -07:00
Randell Jesup 8046f925d7 Bug 1077274: Clean up tracklists r=jib 2014-10-03 17:29:29 -04:00
Patrick McManus c0f03905c5 bug 1003448 - HTTP/2 Alternate Service and Opportunistic Security [2/2 necko] r=hurley 2014-08-21 10:50:17 -04:00
Patrick McManus 235b069e72 bug 1003448 - HTTP/2 Alternate Service and Opportunistic Security [1/2 PSM] r=keeler 2014-08-20 16:30:16 -04:00
Patrick McManus 62ac2724f7 bug 1076129 generate event on socket transport cancelation r=sworkman 2014-10-02 00:47:28 -04:00
Robert Strong c6c8475902 Mac v2 signing - Bug 1075981 - Fix loading libnss3.dylib for weave. r=rnewman 2014-10-03 16:48:58 -04:00
Stephen Pohl ca13b6a589 Bug 1077099: Add GreBinD to easily differentiate between Contents/Resources (GreD) and Contents/MacOS (GreBinD) on OSX. r=bsmedberg 2014-10-03 16:48:49 -04:00
Matthew Gregan 636e40dd42 Bug 1075980 - Be more careful about who holds a reference to the SourceBufferDecoder during initialization. r=karlt 2014-10-02 18:04:06 +13:00
Matthew Gregan aa46f041d1 Bug 1074614 - Remove ChangeToHaveMetadata and WAIT_FOR_MSE_DATA frame status. r=cajbir 2014-09-30 17:12:45 +13:00
Ryan VanderMeulen fa9ac0b845 Merge m-c to inbound. a=merge 2014-10-03 16:26:37 -04:00
Ryan VanderMeulen 4b07046320 Merge fx-team to m-c. a=merge 2014-10-03 16:13:24 -04:00
Ryan VanderMeulen 3b1ad0f2bc Merge inbound to m-c. a=merge 2014-10-03 16:00:09 -04:00
Tomasz Kołodziejski dd47aa6b87 Bug 1077200 - Include searchSuggestionUI.js before newTab.js in case it's used synchronously. r=ttaubert 2014-10-03 10:30:29 -07:00
Dave Townsend 0b4ad00bae Bug 1077078: Don't spam stderr when failing to create a channel. r=mcmanus 2014-10-03 09:59:10 -07:00
B2G Bumper Bot e0f757a820 Bumping manifests a=b2g-bump 2014-10-03 08:17:04 -07:00
B2G Bumper Bot 5004897a24 Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/665042c75b7d
Author: Ryan VanderMeulen <ryanvm@gmail.com>
Desc: Merge pull request #24660 from tauzen/Bug1074800_listen_on_nfc_enabled

Bug 1074800 - NfcHandler starts to listen for peerready only when NFC is enabled, r=alive

========

https://hg.mozilla.org/integration/gaia-central/rev/821c736b7cac
Author: Krzysztof Mioduszewski <kmioduszewski@gmail.com>
Desc: Bug 1074800 - NfcHandler starts to listen for peerready only when NFC is enabled, r=alive
2014-10-03 08:10:51 -07:00
Blake Kaplan f809f5b13f Bug 1026099 - Rework the spellchecker context menu to not use CPOWs. r=ehsan/billm/felipe
This patch fixes a few nits and typos in the C++ spellchecking code as well as
fixing the Finnish dictionary and multiple installed dictionaries in general (r=ehsan).

It reworks the spellchecking context menu to use async message passing (in JS)
and reduces, by a little, the CPOW use in the context menu code (r=felipe).

Finally, the spellcheck IPDL no longer needs to be 'rpc' since we no longer
nest spellchecking calls, so it can go back to being 'sync' (r=billm).
2014-10-03 10:52:37 -04:00
B2G Bumper Bot c40f4965ca Bumping manifests a=b2g-bump 2014-10-03 07:49:04 -07:00
B2G Bumper Bot 1ffd735558 Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/eac922a65696
Author: Zac <zcampbell@mozilla.com>
Desc: Merge pull request #24382 from chirarobert/audio_channel

Bug 1011000 - Enable audio channel change Gaia UI Tests checking

========

https://hg.mozilla.org/integration/gaia-central/rev/124186a26041
Author: Robert Chira <robertchira@P5075.(none)>
Desc: Bug 1011000 - Enable audio channel change Gaia UI Tests checking
2014-10-03 07:48:49 -07:00
ziyunfei b34ca240df Bug 1076588 - Object.freeze() should return its argument with no conversion when the argument is a primitive value. r=till, r=Yoric 2014-10-03 02:42:00 -04:00
Wayne Chen 5022b313c9 Bug 1072021: Fix bluetooth address is empty to set Audio HAL when A2DP is disconnected. r=echou 2014-10-02 17:22:44 +08:00
Ed Morley 22bd17338b Merge mozilla-central and b2g-inbound 2014-10-03 15:20:08 +01:00
B2G Bumper Bot 7724cb25b1 Bumping manifests a=b2g-bump 2014-10-03 07:17:02 -07:00
B2G Bumper Bot 8f4896fd4d Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/3ff9cbe0526a
Author: Ryan VanderMeulen <ryanvm@gmail.com>
Desc: Merge pull request #24661 from mancas/bug1039501

Bug 1039501 - [User Story] [FOTA] WiFi prioritized for downloading. r=et...

========

https://hg.mozilla.org/integration/gaia-central/rev/99c89e33b134
Author: Manuel Casas Barrado <manuel.casasbarrado@telefonica.com>
Desc: Bug 1039501 - [User Story] [FOTA] WiFi prioritized for downloading. r=etienne
2014-10-03 07:10:47 -07:00
Ed Morley 2d0f9579b5 Backed out changeset a0b82c954206 (bug 1062709) for Windows mochitest 5 hangs 2014-10-03 15:06:16 +01:00
Ed Morley 9e223d8a19 Backed out changeset 7a1b7d7eba12 (bug 1062709) 2014-10-03 15:05:26 +01:00
Ed Morley e70f0aed29 Merge latest green fx-team changeset and mozilla-central; a=merge 2014-10-03 14:51:14 +01:00