Commit a91df97e authored by Ned Nguyen's avatar Ned Nguyen Committed by Commit Bot

Disable Surface Synchronization on Webview

Bug:881469, 879151
Cq-Include-Trybots: master.tryserver.chromium.perf:obbs_fyi
Change-Id: I419072d72f2bae1352f97a1283892f4ec5b5d04c

NOTRY=true # ios-simulator flake

Change-Id: I419072d72f2bae1352f97a1283892f4ec5b5d04c
Reviewed-on: https://chromium-review.googlesource.com/1211463
Commit-Queue: Ned Nguyen <nednguyen@google.com>
Reviewed-by: default avatarFady Samuel <fsamuel@chromium.org>
Cr-Commit-Position: refs/heads/master@{#589316}
parent 4ff73ce8
...@@ -104,6 +104,13 @@ class PerfBenchmark(benchmark.Benchmark): ...@@ -104,6 +104,13 @@ class PerfBenchmark(benchmark.Benchmark):
# with the test results. # with the test results.
options.AppendExtraBrowserArgs( options.AppendExtraBrowserArgs(
'--disable-gpu-process-for-dx12-vulkan-info-collection') '--disable-gpu-process-for-dx12-vulkan-info-collection')
# TODO(crbug.com/881469): remove this once Webview support surface
# synchronization.
if options.browser_type == 'android-webview':
options.AppendExtraBrowserArgs(
'--disable-features=SurfaceSynchronization')
self.SetExtraBrowserOptions(options) self.SetExtraBrowserOptions(options)
@staticmethod @staticmethod
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment