1. 06 Sep, 2018 34 commits
  2. 05 Sep, 2018 6 commits
    • webrtc-chromium-autoroll's avatar
      Roll src/third_party/webrtc 62228c41ea17..b9bb9e3f6683 (10 commits) · 68a35fc7
      webrtc-chromium-autoroll authored
      https://webrtc.googlesource.com/src.git/+log/62228c41ea17..b9bb9e3f6683
      
      
      git log 62228c41ea17..b9bb9e3f6683 --date=short --no-merges --format='%ad %ae %s'
      2018-09-05 buildbot@webrtc.org Roll chromium_revision 4d01f290..87a4e8f8 (588344:588971)
      2018-09-05 julien.isorce@chromium.org ScreenCapturerMac: make sure the desktop frame is zero initiaziled
      2018-09-05 braveyao@webrtc.org desktopCapture: add braveyao@webrtc.org as OWNER
      2018-09-05 danilchap@webrtc.org Add RtcpTransceiver::Stop to allow non-blocking destruction
      2018-09-05 sakal@webrtc.org Add support for platform software video decoder implementations.
      2018-09-05 mbonadei@webrtc.org Introduce GN arg rtc_exclude_metrics_default.
      2018-09-05 danilchap@webrtc.org in RtpPacketizer add support for first packet reduction length
      2018-09-05 magjed@webrtc.org Reland "Reland "Update video_quality_analysis to align videos instead of using barcodes""
      2018-09-05 brandtr@webrtc.org Remove deprecated VideoEncoder.Settings constructor.
      2018-09-05 sprang@webrtc.org Clean away WebRTC-Vp8DontDropKeyFrames switch
      
      
      Created with:
        gclient setdep -r src/third_party/webrtc@b9bb9e3f6683
      
      The AutoRoll server is located here: https://autoroll.skia.org/r/webrtc-chromium-autoroll
      
      Documentation for the AutoRoller is here:
      https://skia.googlesource.com/buildbot/+/master/autoroll/README.md
      
      If the roll is causing failures, please contact the current sheriff, who should
      be CC'd on the roll, and stop the roller if necessary.
      
      CQ_INCLUDE_TRYBOTS=luci.chromium.try:linux_chromium_archive_rel_ng;luci.chromium.try:mac_chromium_archive_rel_ng
      
      BUG=chromium:None,chromium:867003
      TBR=webrtc-chromium-sheriffs-robots@google.com
      
      Change-Id: If34680549d9e4ac36e11fc8a86f192c208d636ea
      Reviewed-on: https://chromium-review.googlesource.com/1208296Reviewed-by: default avatarwebrtc-chromium-autoroll <webrtc-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com>
      Commit-Queue: webrtc-chromium-autoroll <webrtc-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com>
      Cr-Commit-Position: refs/heads/master@{#589067}
      68a35fc7
    • Clemens Hammacher's avatar
      Enable WebAssembly baseline compilation by default · 2564cbca
      Clemens Hammacher authored
      After the flag flip in v8 (https://crrev.com/c/1118485), this CL also
      changes the default of the chromium flag to enabled.
      Chromium always passes either "--no-wasm-tier-up" or "--wasm-tier-up" to
      d8, so the flag flip in v8 did not have any effect on chromium.
      
      R=titzer@chromium.org, hablich@chromium.org
      
      Bug: chromium:880790, chromium:787421
      Change-Id: I3d6b66a90ca41cb093b9bfd174ca3bfc3c35263a
      Reviewed-on: https://chromium-review.googlesource.com/1206351Reviewed-by: default avatarMichael Hablich <hablich@chromium.org>
      Reviewed-by: default avatarScott Violet <sky@chromium.org>
      Commit-Queue: Michael Hablich <hablich@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#589066}
      2564cbca
    • Miguel Casas's avatar
      Revert "Do not use components/arc/common in non CrOs builds" · 34cd555a
      Miguel Casas authored
      This reverts commit e865a56b.
      
      Reason for revert: Causing gn analyze problems e.g.
      https://ci.chromium.org/p/chromium/builders/luci.chromium.ci/linux-dbg/331
      https://ci.chromium.org/p/chromium/builders/luci.chromium.ci/win32-rel/2125
      
      /b/swarming/w/ir/cache/builder/src/buildtools/linux64/gn gen //out/Debug --check
        -> returned 1
      ERROR at //components/viz/service/main/viz_main_impl.cc:22:11: Can't include this header from here.
      #include "media/gpu/buildflags.h"
                ^---------------------
      The target:
        //components/viz/service/main:main
      is including a file from the target:
        //media/gpu:buildflags
      It's usually best to depend directly on the destination target.
      In some cases, the destination target is considered a subcomponent
      of an intermediate target. In this case, the intermediate target
      should depend publicly on the destination to forward the ability
      to include headers.
      Dependency chain (there may also be others):
        //components/viz/service/main:main -->
        //components/viz/service:service --[private]-->
        //media/gpu/ipc/service:service --[private]-->
        //media/gpu:buildflags
      
      Original change's description:
      > Do not use components/arc/common in non CrOs builds
      > 
      > I found that (at least win) bots are using components/arc/common
      > stuff (see e.g. [1]), when this are supposed to be limited to
      > CrOs.  This CL corrects that by sandwiching the appropriate
      > BUILD entries between if(is_chromeos).
      > 
      > [1] https://logs.chromium.org/logs/chromium/buildbucket/cr-buildbucket.appspot.com/8936282730877054816/+/steps/compile/0/stdout
      > /BUILD.gn mojom(media)
      > 
      > Bug: 732531
      > Cq-Include-Trybots: luci.chromium.try:android_optional_gpu_tests_rel
      > Change-Id: Ic0e807b5b97d1aadd5736377188456634424647d
      > Reviewed-on: https://chromium-review.googlesource.com/1208410
      > Reviewed-by: Luis Hector Chavez <lhchavez@chromium.org>
      > Reviewed-by: Robert Sesek <rsesek@chromium.org>
      > Reviewed-by: kylechar <kylechar@chromium.org>
      > Commit-Queue: Miguel Casas <mcasas@chromium.org>
      > Cr-Commit-Position: refs/heads/master@{#589056}
      
      TBR=lhchavez@chromium.org,mcasas@chromium.org,rsesek@chromium.org,kylechar@chromium.org
      
      Change-Id: I2638bbedd77268b26ca0c3ca4fc94606d196b545
      No-Presubmit: true
      No-Tree-Checks: true
      No-Try: true
      Bug: 732531
      Cq-Include-Trybots: luci.chromium.try:android_optional_gpu_tests_rel
      Reviewed-on: https://chromium-review.googlesource.com/1208678Reviewed-by: default avatarMiguel Casas <mcasas@chromium.org>
      Commit-Queue: Miguel Casas <mcasas@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#589065}
      34cd555a
    • skia-chromium-autoroll's avatar
      Roll src/third_party/skia 29a4a684af25..0c3dc59fc1c6 (14 commits) · f65d3e61
      skia-chromium-autoroll authored
      https://skia.googlesource.com/skia.git/+log/29a4a684af25..0c3dc59fc1c6
      
      
      git log 29a4a684af25..0c3dc59fc1c6 --date=short --no-merges --format='%ad %ae %s'
      2018-09-05 swiftshader-skia-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com Roll third_party/externals/swiftshader fe5861bf5bb1..ad5c2952ca88 (5 commits)
      2018-09-05 mtklein@google.com fix sw extended transfer functions
      2018-09-05 mtklein@google.com fix typo
      2018-09-05 mtklein@google.com add src/opts headers to .gni files
      2018-09-05 bsalomon@google.com Don't use MEM_MOVE=true with SkTArrays of sk_sp
      2018-09-05 jvanverth@google.com Rip out variable offsetting
      2018-09-05 bsalomon@google.com Fix GrAAConvexTessellator to handle cases slightly concave bistectors.
      2018-09-05 recipe-roller@chromium.org Roll recipe dependencies (trivial).
      2018-09-05 herb@google.com Centralize the predicate for a glyph being too large for the atlas
      2018-09-05 bsalomon@google.com Fix missing triangle when miter point omitted in GrAAConvexTessellator.
      2018-09-05 brianosman@google.com Remove SK_USE_LEGACY_PRIMARIES_TO_XYZ
      2018-09-05 skcms-skia-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com Roll skia/third_party/skcms 8a251fa55434..da4870efd7b7 (1 commits)
      2018-09-05 caryclark@google.com Revert "makeSurface defaults to raster"
      2018-09-05 egdaniel@google.com On GrAHardwareBufferImageGenerator store the owned texture as a GrGpuResource instead of GrTexture.
      
      
      Created with:
        gclient setdep -r src/third_party/skia@0c3dc59fc1c6
      
      The AutoRoll server is located here: https://autoroll.skia.org/r/skia-autoroll
      
      Documentation for the AutoRoller is here:
      https://skia.googlesource.com/buildbot/+/master/autoroll/README.md
      
      If the roll is causing failures, please contact the current sheriff, who should
      be CC'd on the roll, and stop the roller if necessary.
      
      CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_trusty_blink_rel;luci.chromium.try:android_optional_gpu_tests_rel;luci.chromium.try:linux_optional_gpu_tests_rel;luci.chromium.try:mac_optional_gpu_tests_rel;luci.chromium.try:win_optional_gpu_tests_rel
      
      BUG=chromium:875650,chromium:851637,chromium:b/112859199
      TBR=jvanverth@chromium.org
      
      Change-Id: I21e2f158cebeb62dbc38dfafaf9daea314093269
      Reviewed-on: https://chromium-review.googlesource.com/1208297Reviewed-by: default avatarskia-chromium-autoroll <skia-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com>
      Commit-Queue: skia-chromium-autoroll <skia-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com>
      Cr-Commit-Position: refs/heads/master@{#589064}
      f65d3e61
    • Christian Biesinger's avatar
      [layoutng] More microoptimizations · 6a66ba01
      Christian Biesinger authored
      Addref takes 3.27% in one profile (floats_2_100.html); reduce some of that.
      
      R=eae@chromium.org, ikilpatrick@chromium.org
      
      Change-Id: Ie88ebd6907afc64e8a138d4279549ba1bd0b80c8
      Reviewed-on: https://chromium-review.googlesource.com/1208930
      Commit-Queue: Christian Biesinger <cbiesinger@chromium.org>
      Commit-Queue: Emil A Eklund <eae@chromium.org>
      Reviewed-by: default avatarIan Kilpatrick <ikilpatrick@chromium.org>
      Reviewed-by: default avatarEmil A Eklund <eae@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#589063}
      6a66ba01
    • Sky Malice's avatar
      [Feed] Remove TODO for passing download metadata. · 733c2a21
      Sky Malice authored
      There's a difference between downloading a page and prefetching a page.
      While ContentMetadata is passed for Prefetch, this action results in a
      download. Offline Pages component does not support and does not want to
      support holding/using this metadata for downloads.
      
      Bug: 879824
      Change-Id: I3fd21936355aa94f74066ceac20fe3df2ac4c587
      Reviewed-on: https://chromium-review.googlesource.com/1208910Reviewed-by: default avatarFilip Gorski <fgorski@chromium.org>
      Commit-Queue: Sky Malice <skym@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#589062}
      733c2a21