Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(10)

Issue 1871613002: Compute GpuDriverBugWorkarounds only one time in the GPU process (Closed)

Created:
4 years, 8 months ago by Julien Isorce Samsung
Modified:
4 years, 8 months ago
CC:
chromium-reviews, darin-cc_chromium.org, jam, piman+watch_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Compute GpuDriverBugWorkarounds only one time in the GPU process Previously the extraction of "--gpu-driver-bug-workarounds" from the command-line was done in FeatureInfo's constructor. Since a new FeatureInfo is created for each ContextGroup this extraction was done again whereas the result is constant. This CL moved owner ship of Workarounds from FeatureInfo to InProcessCommandBuffer when running in gpu process mode. But moved to GpuChannelManager otherwise. class GpuDriverBugWorkarounds has been added within new files gpu_driver_bug_workarounds.h/.cc. BUG=599964 R=kbr@chromium.org, piman@chromium.org, rjkroege@chromium.org, zmo@chromium.org CQ_INCLUDE_TRYBOTS=tryserver.chromium.linux:linux_optional_gpu_tests_rel;tryserver.chromium.mac:mac_optional_gpu_tests_rel;tryserver.chromium.win:win_optional_gpu_tests_rel Committed: https://crrev.com/dab49af5278797db0a8374f2a7f06c6c33b8158b Cr-Commit-Position: refs/heads/master@{#387569} Committed: https://crrev.com/57b96c478dda56160c512fd85ee4e0f7437b524d Cr-Commit-Position: refs/heads/master@{#387899} Committed: https://crrev.com/265b2e56348b55fa622275e67a9863ad588f5183 Cr-Commit-Position: refs/heads/master@{#388157}

Patch Set 1 #

Total comments: 5

Patch Set 2 : Rebase (and just add 'explicit' keyword from review) #

Patch Set 3 : Hold a concrete GpuDriverBugWorkarounds field in FeatureInfo #

Patch Set 4 : Rebase and fix gpu_unittests (Broke by last patch set 3 since of wrong FeatureInfo(CommandLine&) co… #

Patch Set 5 : Remove GpuDriverBugWorkarounds param from ContextGroup #

Patch Set 6 : #

Patch Set 7 : Fix gn build #

Patch Set 8 : typedef int GLint instead of including common_decoder.h which is prohibided from gpu/config. Also r… #

Patch Set 9 : add config_sources to ipc_service_sources's deps for gn build #

Patch Set 10 : Initialize workarounds the same way in both InProcessCommandBuffer::Service::Service constructors #

Patch Set 11 : Pass non null FeatureInfo when instanciating ContextGroup in CommandBufferDriver #

Patch Set 12 : Just rebase #

Patch Set 13 : Rebase #

Patch Set 14 : Parse workarounds from GLManager::Initialize when running gl_tests_main.cc::RunHelper #

Patch Set 15 : Rebase #

Patch Set 16 : #

Patch Set 17 : Bring back setup of gpu driver bug workarounds for gles2_conform_support::display.cc, now they are … #

Patch Set 18 : rebase #

Patch Set 19 : Rebase #

Patch Set 20 : Rebase #

Patch Set 21 : Rebase #

Patch Set 22 : Rebase #

Patch Set 23 : Rebase #

Unified diffs Side-by-side diffs Delta from patch set Stats (+272 lines, -150 lines) Patch
M components/mus/gles2/command_buffer_driver.cc View 1 2 3 4 5 6 7 8 9 10 1 chunk +3 lines, -1 line 0 comments Download
M components/mus/gles2/gpu_state.h View 1 2 3 4 5 6 7 8 9 10 3 chunks +6 lines, -0 lines 0 comments Download
M components/mus/gles2/gpu_state.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +1 line, -0 lines 0 comments Download
M gpu/command_buffer/service/buffer_manager_unittest.cc View 1 2 3 1 chunk +3 lines, -3 lines 0 comments Download
M gpu/command_buffer/service/context_group.cc View 1 2 3 4 1 chunk +1 line, -2 lines 0 comments Download
M gpu/command_buffer/service/context_group_unittest.cc View 1 2 3 4 1 chunk +4 lines, -3 lines 0 comments Download
M gpu/command_buffer/service/feature_info.h View 1 2 3 4 chunks +8 lines, -22 lines 0 comments Download
M gpu/command_buffer/service/feature_info.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 3 chunks +11 lines, -61 lines 0 comments Download
M gpu/command_buffer/service/feature_info_unittest.cc View 1 2 3 2 chunks +6 lines, -3 lines 0 comments Download
M gpu/command_buffer/service/gles2_cmd_decoder.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 20 2 chunks +2 lines, -2 lines 0 comments Download
M gpu/command_buffer/service/gles2_cmd_decoder_unittest_base.cc View 1 2 3 4 1 chunk +11 lines, -9 lines 0 comments Download
M gpu/command_buffer/service/in_process_command_buffer.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 4 chunks +4 lines, -1 line 0 comments Download
M gpu/command_buffer/service/in_process_command_buffer.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 3 chunks +18 lines, -9 lines 0 comments Download
M gpu/command_buffer/service/texture_manager.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +1 line, -1 line 0 comments Download
M gpu/command_buffer/service/texture_manager_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +2 lines, -1 line 0 comments Download
M gpu/command_buffer/tests/es3_misc_functions_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +1 line, -1 line 0 comments Download
M gpu/command_buffer/tests/gl_clear_framebuffer_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +1 line, -1 line 0 comments Download
M gpu/command_buffer/tests/gl_copy_tex_image_2d_workaround_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +1 line, -1 line 0 comments Download
M gpu/command_buffer/tests/gl_cube_map_texture_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +1 line, -1 line 0 comments Download
M gpu/command_buffer/tests/gl_ext_blend_func_extended_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 2 chunks +2 lines, -3 lines 0 comments Download
M gpu/command_buffer/tests/gl_iosurface_readback_workaround_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +1 line, -1 line 0 comments Download
M gpu/command_buffer/tests/gl_manager.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 2 chunks +2 lines, -2 lines 0 comments Download
M gpu/command_buffer/tests/gl_manager.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 4 chunks +9 lines, -8 lines 0 comments Download
M gpu/command_buffer/tests/gl_request_extension_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +1 line, -1 line 0 comments Download
M gpu/command_buffer/tests/gl_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +2 lines, -1 line 0 comments Download
M gpu/config/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 1 chunk +2 lines, -0 lines 0 comments Download
A gpu/config/gpu_driver_bug_workarounds.h View 1 2 3 4 5 6 7 1 chunk +46 lines, -0 lines 0 comments Download
A gpu/config/gpu_driver_bug_workarounds.cc View 1 2 3 4 1 chunk +98 lines, -0 lines 0 comments Download
M gpu/gles2_conform_support/egl/display.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 20 2 chunks +2 lines, -0 lines 0 comments Download
M gpu/gles2_conform_support/egl/display.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 20 3 chunks +6 lines, -1 line 0 comments Download
M gpu/gpu_config.gypi View 1 chunk +2 lines, -0 lines 0 comments Download
M gpu/ipc/service/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +1 line, -0 lines 0 comments Download
M gpu/ipc/service/gpu_channel.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +2 lines, -9 lines 0 comments Download
M gpu/ipc/service/gpu_channel_manager.h View 1 2 3 4 5 6 7 3 chunks +5 lines, -0 lines 0 comments Download
M gpu/ipc/service/gpu_channel_manager.cc View 1 2 2 chunks +2 lines, -0 lines 0 comments Download
M gpu/ipc/service/gpu_command_buffer_stub.cc View 1 2 3 4 1 chunk +4 lines, -2 lines 0 comments Download

Messages

Total messages: 119 (56 generated)
piman
I wouldn't go out of my way to use the GpuDriverBugWorkarounds by reference, rather than ...
4 years, 8 months ago (2016-04-12 04:38:44 UTC) #2
Julien Isorce Samsung
https://codereview.chromium.org/1871613002/diff/1/gpu/command_buffer/service/feature_info.h File gpu/command_buffer/service/feature_info.h (right): https://codereview.chromium.org/1871613002/diff/1/gpu/command_buffer/service/feature_info.h#newcode94 gpu/command_buffer/service/feature_info.h:94: FeatureInfo(const GpuDriverBugWorkarounds& gpu_driver_bug_workarounds); On 2016/04/12 04:38:44, piman wrote: > ...
4 years, 8 months ago (2016-04-12 16:11:33 UTC) #3
Julien Isorce Samsung
On 2016/04/12 04:38:44, piman wrote: > I wouldn't go out of my way to use ...
4 years, 8 months ago (2016-04-12 16:13:29 UTC) #4
Julien Isorce Samsung
On 2016/04/12 16:13:29, j.isorce wrote: > On 2016/04/12 04:38:44, piman wrote: > > I wouldn't ...
4 years, 8 months ago (2016-04-13 00:03:17 UTC) #5
Julien Isorce Samsung
On 2016/04/13 00:03:17, j.isorce wrote: > On 2016/04/12 16:13:29, j.isorce wrote: > > On 2016/04/12 ...
4 years, 8 months ago (2016-04-13 12:49:09 UTC) #6
piman
LGTM. I think this is nice, and we may be able to eventually initialize the ...
4 years, 8 months ago (2016-04-14 02:42:09 UTC) #7
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1871613002/80001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1871613002/80001
4 years, 8 months ago (2016-04-14 02:42:33 UTC) #9
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_gn_chromeos_rel on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_gn_chromeos_rel/builds/171927)
4 years, 8 months ago (2016-04-14 02:55:26 UTC) #11
Julien Isorce Samsung
I updated description to better match with "Patch Set 5". Also "Patch Set 6" I ...
4 years, 8 months ago (2016-04-14 09:55:22 UTC) #13
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1871613002/100001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1871613002/100001
4 years, 8 months ago (2016-04-14 09:55:52 UTC) #15
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: android_compile_dbg on tryserver.chromium.android (JOB_FAILED, https://build.chromium.org/p/tryserver.chromium.android/builders/android_compile_dbg/builds/50440) cast_shell_android on ...
4 years, 8 months ago (2016-04-14 10:11:13 UTC) #17
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1871613002/120001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1871613002/120001
4 years, 8 months ago (2016-04-14 12:07:02 UTC) #19
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: android_chromium_gn_compile_dbg on tryserver.chromium.android (JOB_FAILED, https://build.chromium.org/p/tryserver.chromium.android/builders/android_chromium_gn_compile_dbg/builds/50757) android_chromium_gn_compile_rel on ...
4 years, 8 months ago (2016-04-14 12:11:08 UTC) #21
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1871613002/140001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1871613002/140001
4 years, 8 months ago (2016-04-14 12:43:01 UTC) #23
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: android_chromium_gn_compile_dbg on tryserver.chromium.android (JOB_FAILED, https://build.chromium.org/p/tryserver.chromium.android/builders/android_chromium_gn_compile_dbg/builds/50766) android_chromium_gn_compile_rel on ...
4 years, 8 months ago (2016-04-14 12:47:01 UTC) #25
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1871613002/160001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1871613002/160001
4 years, 8 months ago (2016-04-14 13:07:35 UTC) #27
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: android_arm64_dbg_recipe on tryserver.chromium.android (JOB_FAILED, https://build.chromium.org/p/tryserver.chromium.android/builders/android_arm64_dbg_recipe/builds/50401) android_compile_dbg on ...
4 years, 8 months ago (2016-04-14 13:21:55 UTC) #29
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1871613002/180001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1871613002/180001
4 years, 8 months ago (2016-04-14 13:43:25 UTC) #31
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: linux_android_rel_ng on tryserver.chromium.android (JOB_FAILED, https://build.chromium.org/p/tryserver.chromium.android/builders/linux_android_rel_ng/builds/53741)
4 years, 8 months ago (2016-04-14 14:44:15 UTC) #33
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1871613002/200001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1871613002/200001
4 years, 8 months ago (2016-04-14 14:54:25 UTC) #35
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: linux_android_rel_ng on tryserver.chromium.android (JOB_FAILED, https://build.chromium.org/p/tryserver.chromium.android/builders/linux_android_rel_ng/builds/53766)
4 years, 8 months ago (2016-04-14 16:56:22 UTC) #39
Julien Isorce Samsung
On 2016/04/14 16:56:22, commit-bot: I haz the power wrote: > Dry run: Try jobs failed ...
4 years, 8 months ago (2016-04-14 17:43:05 UTC) #40
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1871613002/220001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1871613002/220001
4 years, 8 months ago (2016-04-14 17:44:02 UTC) #42
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: linux_android_rel_ng on tryserver.chromium.android (JOB_FAILED, https://build.chromium.org/p/tryserver.chromium.android/builders/linux_android_rel_ng/builds/53915)
4 years, 8 months ago (2016-04-14 19:47:09 UTC) #44
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1871613002/260001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1871613002/260001
4 years, 8 months ago (2016-04-14 20:47:51 UTC) #46
Julien Isorce Samsung
Hi Antoine, please have a look to the changes I made since your last review. ...
4 years, 8 months ago (2016-04-14 22:14:56 UTC) #48
piman
lgtm
4 years, 8 months ago (2016-04-14 22:25:22 UTC) #49
rjkroege
mus: lgtm
4 years, 8 months ago (2016-04-14 22:33:43 UTC) #50
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: win_chromium_rel_ng on tryserver.chromium.win (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.win/builders/win_chromium_rel_ng/builds/205344)
4 years, 8 months ago (2016-04-14 23:42:29 UTC) #52
Julien Isorce Samsung
On 2016/04/14 23:42:29, commit-bot: I haz the power wrote: > Dry run: Try jobs failed ...
4 years, 8 months ago (2016-04-15 08:57:17 UTC) #53
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1871613002/300001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1871613002/300001
4 years, 8 months ago (2016-04-15 08:57:45 UTC) #55
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
4 years, 8 months ago (2016-04-15 10:08:32 UTC) #57
Julien Isorce Samsung
On 2016/04/15 10:08:32, commit-bot: I haz the power wrote: > Dry run: This issue passed ...
4 years, 8 months ago (2016-04-15 10:20:58 UTC) #58
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1871613002/300001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1871613002/300001
4 years, 8 months ago (2016-04-15 10:21:39 UTC) #61
commit-bot: I haz the power
Committed patchset #16 (id:300001)
4 years, 8 months ago (2016-04-15 10:26:17 UTC) #63
commit-bot: I haz the power
Patchset 16 (id:??) landed as https://crrev.com/dab49af5278797db0a8374f2a7f06c6c33b8158b Cr-Commit-Position: refs/heads/master@{#387569}
4 years, 8 months ago (2016-04-15 10:27:58 UTC) #65
Corentin Wallez
A revert of this CL (patchset #16 id:300001) has been created in https://codereview.chromium.org/1892483004/ by cwallez@chromium.org. ...
4 years, 8 months ago (2016-04-15 13:28:38 UTC) #66
Julien Isorce Samsung
On 2016/04/15 13:28:38, Corentin Wallez wrote: > A revert of this CL (patchset #16 id:300001) ...
4 years, 8 months ago (2016-04-15 13:53:28 UTC) #68
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1871613002/310001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1871613002/310001
4 years, 8 months ago (2016-04-15 14:19:35 UTC) #70
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
4 years, 8 months ago (2016-04-15 15:17:44 UTC) #72
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1871613002/330001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1871613002/330001
4 years, 8 months ago (2016-04-15 16:09:39 UTC) #74
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
4 years, 8 months ago (2016-04-15 18:48:37 UTC) #76
Julien Isorce Samsung
On 2016/04/15 18:48:37, commit-bot: I haz the power wrote: > Dry run: This issue passed ...
4 years, 8 months ago (2016-04-15 20:38:41 UTC) #77
Ken Russell (switch to Gerrit)
On 2016/04/15 20:38:41, j.isorce wrote: > On 2016/04/15 18:48:37, commit-bot: I haz the power wrote: ...
4 years, 8 months ago (2016-04-16 00:10:55 UTC) #78
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1871613002/350001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1871613002/350001
4 years, 8 months ago (2016-04-18 08:53:31 UTC) #81
commit-bot: I haz the power
Try jobs failed on following builders: mac_chromium_gn_rel on tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/mac_chromium_gn_rel/builds/96914) mac_chromium_rel_ng on tryserver.chromium.mac (JOB_FAILED, ...
4 years, 8 months ago (2016-04-18 08:55:23 UTC) #83
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1871613002/350001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1871613002/350001
4 years, 8 months ago (2016-04-18 11:07:40 UTC) #85
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: ios_dbg_simulator_gn on tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/ios_dbg_simulator_gn/builds/20568)
4 years, 8 months ago (2016-04-18 11:09:51 UTC) #87
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1871613002/370001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1871613002/370001
4 years, 8 months ago (2016-04-18 12:34:23 UTC) #89
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
4 years, 8 months ago (2016-04-18 13:50:22 UTC) #91
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1871613002/370001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1871613002/370001
4 years, 8 months ago (2016-04-18 13:59:04 UTC) #94
commit-bot: I haz the power
Committed patchset #20 (id:370001)
4 years, 8 months ago (2016-04-18 14:11:44 UTC) #96
commit-bot: I haz the power
Patchset 20 (id:??) landed as https://crrev.com/57b96c478dda56160c512fd85ee4e0f7437b524d Cr-Commit-Position: refs/heads/master@{#387899}
4 years, 8 months ago (2016-04-18 14:13:16 UTC) #98
Zhenyao Mo
A revert of this CL (patchset #20 id:370001) has been created in https://codereview.chromium.org/1902453002/ by zmo@chromium.org. ...
4 years, 8 months ago (2016-04-18 17:27:25 UTC) #99
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1871613002/390001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1871613002/390001
4 years, 8 months ago (2016-04-18 20:21:37 UTC) #102
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: win_optional_gpu_tests_rel on tryserver.chromium.win (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.win/builders/win_optional_gpu_tests_rel/builds/855)
4 years, 8 months ago (2016-04-18 20:25:24 UTC) #104
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1871613002/410001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1871613002/410001
4 years, 8 months ago (2016-04-18 21:37:18 UTC) #106
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: win_optional_gpu_tests_rel on tryserver.chromium.win (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.win/builders/win_optional_gpu_tests_rel/builds/866)
4 years, 8 months ago (2016-04-18 22:56:43 UTC) #108
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1871613002/430001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1871613002/430001
4 years, 8 months ago (2016-04-19 05:22:29 UTC) #110
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: win_optional_gpu_tests_rel on tryserver.chromium.win (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.win/builders/win_optional_gpu_tests_rel/builds/876)
4 years, 8 months ago (2016-04-19 05:24:05 UTC) #112
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1871613002/430001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1871613002/430001
4 years, 8 months ago (2016-04-19 06:46:22 UTC) #115
commit-bot: I haz the power
Committed patchset #23 (id:430001)
4 years, 8 months ago (2016-04-19 07:40:13 UTC) #117
commit-bot: I haz the power
4 years, 8 months ago (2016-04-19 07:41:12 UTC) #119
Message was sent while issue was closed.
Patchset 23 (id:??) landed as
https://crrev.com/265b2e56348b55fa622275e67a9863ad588f5183
Cr-Commit-Position: refs/heads/master@{#388157}

Powered by Google App Engine
This is Rietveld 408576698