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

Issue 1745903002: Introduce GpuVideoDecodeAcceleratorFactory. (Closed)

Created:
4 years, 9 months ago by Pawel Osciak
Modified:
4 years, 9 months ago
CC:
chromium-reviews, darin-cc_chromium.org, feature-media-reviews_chromium.org, mcasas+watch_chromium.org, piman+watch_chromium.org, posciak+watch_chromium.org, Peng
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Introduce GpuVideoDecodeAcceleratorFactory. - Move platform-specific code from GpuVideoDecodeAccelerator to GpuVideoDecodeAcceleratorFactory. - Make GVDAFactory a content/public interface, to provide the ability to instantiate VDAs from outside content/. - Unify how we obtain access to various GL functionality/classes from VDAs by introducing a set of callbacks provided by the client. - Replace VDA::CanDecodeOnIOThread() with VDA::TryInitializeDecodeOnSeparateThread(). This allows us to remove additional client/taskrunner arguments from VDA constructors, and give client the option to use a separate thread to decode, instead of having to make this decision in the factory, and enforcing these arguments in the constructors. - Deduplicate VDA creation code across users (currently GVDA and vdaunittest). BUG=b/27687678 TEST=compile/run various VDA impls CQ_INCLUDE_TRYBOTS=tryserver.chromium.win:win_optional_gpu_tests_rel Committed: https://crrev.com/6977e5243786901a766a38c2c291464875dffbd6 Cr-Commit-Position: refs/heads/master@{#383256}

Patch Set 1 #

Total comments: 12

Patch Set 2 : #

Patch Set 3 : #

Patch Set 4 : #

Total comments: 8

Patch Set 5 : #

Total comments: 6

Patch Set 6 : #

Total comments: 4

Patch Set 7 : #

Patch Set 8 : #

Patch Set 9 : #

Patch Set 10 : #

Patch Set 11 : #

Total comments: 8

Patch Set 12 : #

Total comments: 5

Patch Set 13 : #

Total comments: 7

Patch Set 14 : #

Patch Set 15 : #

Patch Set 16 : #

Patch Set 17 : Instantiate GVDAFactoryImpl instead of GVDAFactory from content/common #

Total comments: 4

Patch Set 18 : #

Patch Set 19 : rebase #

Patch Set 20 : #

Patch Set 21 #

Patch Set 22 : #

Total comments: 2
Unified diffs Side-by-side diffs Delta from patch set Stats (+1103 lines, -581 lines) Patch
M content/common/gpu/media/android_video_decode_accelerator.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 5 chunks +11 lines, -7 lines 0 comments Download
M content/common/gpu/media/android_video_decode_accelerator.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 7 chunks +41 lines, -31 lines 0 comments Download
M content/common/gpu/media/android_video_decode_accelerator_unittest.cc View 1 2 2 chunks +7 lines, -1 line 0 comments Download
M content/common/gpu/media/dxva_video_decode_accelerator_win.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 5 chunks +10 lines, -7 lines 0 comments Download
M content/common/gpu/media/dxva_video_decode_accelerator_win.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 9 chunks +24 lines, -14 lines 0 comments Download
M content/common/gpu/media/fake_video_decode_accelerator.h View 1 2 3 4 5 6 7 8 9 10 11 4 chunks +8 lines, -6 lines 0 comments Download
M content/common/gpu/media/fake_video_decode_accelerator.cc View 1 2 3 4 5 6 7 8 9 10 11 3 chunks +9 lines, -10 lines 0 comments Download
M content/common/gpu/media/gpu_video_decode_accelerator.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 4 chunks +11 lines, -35 lines 0 comments Download
M content/common/gpu/media/gpu_video_decode_accelerator.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 6 chunks +82 lines, -198 lines 0 comments Download
A content/common/gpu/media/gpu_video_decode_accelerator_factory_impl.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +126 lines, -0 lines 0 comments Download
A content/common/gpu/media/gpu_video_decode_accelerator_factory_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 1 chunk +241 lines, -0 lines 0 comments Download
A content/common/gpu/media/gpu_video_decode_accelerator_helpers.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +59 lines, -0 lines 0 comments Download
M content/common/gpu/media/rendering_helper.h View 1 chunk +1 line, -4 lines 0 comments Download
M content/common/gpu/media/rendering_helper.cc View 1 chunk +2 lines, -6 lines 0 comments Download
M content/common/gpu/media/v4l2_slice_video_decode_accelerator.h View 1 2 3 4 5 6 7 8 9 10 11 6 chunks +16 lines, -13 lines 0 comments Download
M content/common/gpu/media/v4l2_slice_video_decode_accelerator.cc View 1 2 3 4 5 6 7 8 9 10 11 14 chunks +39 lines, -22 lines 0 comments Download
M content/common/gpu/media/v4l2_video_decode_accelerator.h View 1 2 3 4 5 6 7 8 9 10 11 6 chunks +17 lines, -14 lines 0 comments Download
M content/common/gpu/media/v4l2_video_decode_accelerator.cc View 1 2 3 4 5 6 7 8 9 10 11 14 chunks +40 lines, -21 lines 0 comments Download
M content/common/gpu/media/vaapi_drm_picture.h View 1 2 3 4 5 6 7 8 9 10 11 3 chunks +2 lines, -3 lines 0 comments Download
M content/common/gpu/media/vaapi_drm_picture.cc View 1 2 3 4 5 6 7 8 9 10 11 2 chunks +4 lines, -4 lines 0 comments Download
M content/common/gpu/media/vaapi_picture.h View 1 2 3 4 5 6 7 8 9 10 11 12 2 chunks +3 lines, -3 lines 0 comments Download
M content/common/gpu/media/vaapi_picture.cc View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +3 lines, -3 lines 0 comments Download
M content/common/gpu/media/vaapi_tfp_picture.h View 1 2 3 4 5 6 7 8 9 10 11 3 chunks +2 lines, -3 lines 0 comments Download
M content/common/gpu/media/vaapi_tfp_picture.cc View 1 2 3 4 5 6 7 8 9 10 11 2 chunks +4 lines, -4 lines 0 comments Download
M content/common/gpu/media/vaapi_video_decode_accelerator.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 5 chunks +13 lines, -10 lines 0 comments Download
M content/common/gpu/media/vaapi_video_decode_accelerator.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 5 chunks +18 lines, -9 lines 0 comments Download
M content/common/gpu/media/video_decode_accelerator_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 9 chunks +49 lines, -120 lines 0 comments Download
M content/common/gpu/media/vt_video_decode_accelerator_mac.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 4 chunks +10 lines, -5 lines 0 comments Download
M content/common/gpu/media/vt_video_decode_accelerator_mac.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 6 chunks +19 lines, -9 lines 0 comments Download
M content/content_common.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 1 chunk +3 lines, -0 lines 0 comments Download
M content/content_gpu.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +2 lines, -0 lines 0 comments Download
M content/public/gpu/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 2 chunks +5 lines, -0 lines 1 comment Download
A content/public/gpu/DEPS View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 1 chunk +9 lines, -0 lines 0 comments Download
A content/public/gpu/gpu_video_decode_accelerator_factory.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 1 chunk +96 lines, -0 lines 0 comments Download
A content/public/gpu/gpu_video_decode_accelerator_factory.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +68 lines, -0 lines 0 comments Download
M gpu/command_buffer/service/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 +1 line, -0 lines 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 +1 line, -0 lines 1 comment Download
M media/video/mock_video_decode_accelerator.h View 1 2 3 4 5 1 chunk +3 lines, -1 line 0 comments Download
M media/video/video_decode_accelerator.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 3 chunks +39 lines, -15 lines 0 comments Download
M media/video/video_decode_accelerator.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +5 lines, -3 lines 0 comments Download

Messages

Total messages: 80 (33 generated)
Pawel Osciak
4 years, 9 months ago (2016-02-29 01:52:02 UTC) #3
kcwu
https://codereview.chromium.org/1745903002/diff/1/content/common/gpu/media/android_video_decode_accelerator.cc File content/common/gpu/media/android_video_decode_accelerator.cc (right): https://codereview.chromium.org/1745903002/diff/1/content/common/gpu/media/android_video_decode_accelerator.cc#newcode250 content/common/gpu/media/android_video_decode_accelerator.cc:250: auto gles_decoder = get_gles2_decoder_cb_.Run(); However about moving those callbacks ...
4 years, 9 months ago (2016-03-01 10:25:07 UTC) #4
wuchengli
Kuang-che has reviewed this. I'm removing myself from the reviewer.
4 years, 9 months ago (2016-03-01 10:49:14 UTC) #7
Pawel Osciak
ptal https://codereview.chromium.org/1745903002/diff/1/content/common/gpu/media/android_video_decode_accelerator.cc File content/common/gpu/media/android_video_decode_accelerator.cc (right): https://codereview.chromium.org/1745903002/diff/1/content/common/gpu/media/android_video_decode_accelerator.cc#newcode250 content/common/gpu/media/android_video_decode_accelerator.cc:250: auto gles_decoder = get_gles2_decoder_cb_.Run(); On 2016/03/01 10:25:06, kcwu ...
4 years, 9 months ago (2016-03-02 07:17:12 UTC) #11
kcwu
nits https://codereview.chromium.org/1745903002/diff/100001/content/common/gpu/media/video_decode_accelerator_unittest.cc File content/common/gpu/media/video_decode_accelerator_unittest.cc (right): https://codereview.chromium.org/1745903002/diff/100001/content/common/gpu/media/video_decode_accelerator_unittest.cc#newcode363 content/common/gpu/media/video_decode_accelerator_unittest.cc:363: scoped_ptr<media::VideoDecodeAccelerator> CreateDXVAVDA(); This and following are not used ...
4 years, 9 months ago (2016-03-02 07:52:46 UTC) #12
Pawel Osciak
https://codereview.chromium.org/1745903002/diff/100001/content/common/gpu/media/video_decode_accelerator_unittest.cc File content/common/gpu/media/video_decode_accelerator_unittest.cc (right): https://codereview.chromium.org/1745903002/diff/100001/content/common/gpu/media/video_decode_accelerator_unittest.cc#newcode363 content/common/gpu/media/video_decode_accelerator_unittest.cc:363: scoped_ptr<media::VideoDecodeAccelerator> CreateDXVAVDA(); On 2016/03/02 07:52:45, kcwu wrote: > This ...
4 years, 9 months ago (2016-03-02 08:16:52 UTC) #13
Pawel Osciak
+liberato@ for AVDA please +ananta@ for DXVDA please +sandersd@ for VTVDA and media/ please +jam@ ...
4 years, 9 months ago (2016-03-02 08:49:00 UTC) #15
kcwu
https://codereview.chromium.org/1745903002/diff/120001/content/common/gpu/media/fake_video_decode_accelerator.cc File content/common/gpu/media/fake_video_decode_accelerator.cc (right): https://codereview.chromium.org/1745903002/diff/120001/content/common/gpu/media/fake_video_decode_accelerator.cc#newcode165 content/common/gpu/media/fake_video_decode_accelerator.cc:165: return false; FakeVideoDecodeAccelerator::CanDecodeOnIOThread() was true. Is it intended to ...
4 years, 9 months ago (2016-03-02 09:00:12 UTC) #16
Pawel Osciak
https://chromiumcodereview.appspot.com/1745903002/diff/120001/content/common/gpu/media/fake_video_decode_accelerator.cc File content/common/gpu/media/fake_video_decode_accelerator.cc (right): https://chromiumcodereview.appspot.com/1745903002/diff/120001/content/common/gpu/media/fake_video_decode_accelerator.cc#newcode165 content/common/gpu/media/fake_video_decode_accelerator.cc:165: return false; On 2016/03/02 09:00:12, kcwu wrote: > FakeVideoDecodeAccelerator::CanDecodeOnIOThread() ...
4 years, 9 months ago (2016-03-02 10:16:50 UTC) #17
kcwu
lgtm
4 years, 9 months ago (2016-03-02 10:23:03 UTC) #18
sandersd (OOO until July 31)
VTVDA LGTM (I'll check the rest too, but you don't have to wait for me ...
4 years, 9 months ago (2016-03-02 18:33:54 UTC) #19
liberato (no reviews please)
avda lgtm. nice.
4 years, 9 months ago (2016-03-02 18:42:46 UTC) #20
jam
the cl description says "- Make GVDAFactory a content/public interface, to provide the ability to ...
4 years, 9 months ago (2016-03-02 19:16:48 UTC) #21
Fady Samuel
On 2016/03/02 19:16:48, jam wrote: > the cl description says > > "- Make GVDAFactory ...
4 years, 9 months ago (2016-03-02 19:21:27 UTC) #22
Fady Samuel
On 2016/03/02 19:21:27, Fady Samuel wrote: > On 2016/03/02 19:16:48, jam wrote: > > the ...
4 years, 9 months ago (2016-03-04 01:36:54 UTC) #23
Pawel Osciak
-jam@ +jochen@ for content/public please
4 years, 9 months ago (2016-03-04 08:21:12 UTC) #25
jochen (gone - plz use gerrit)
https://codereview.chromium.org/1745903002/diff/140001/content/public/common/gpu_video_decode_accelerator_helpers.h File content/public/common/gpu_video_decode_accelerator_helpers.h (right): https://codereview.chromium.org/1745903002/diff/140001/content/public/common/gpu_video_decode_accelerator_helpers.h#newcode34 content/public/common/gpu_video_decode_accelerator_helpers.h:34: struct gpu_vda_helpers { why is that not just a ...
4 years, 9 months ago (2016-03-04 12:59:57 UTC) #27
Pawel Osciak
Thanks. Comments addressed. PTAL. https://chromiumcodereview.appspot.com/1745903002/diff/140001/content/public/common/gpu_video_decode_accelerator_helpers.h File content/public/common/gpu_video_decode_accelerator_helpers.h (right): https://chromiumcodereview.appspot.com/1745903002/diff/140001/content/public/common/gpu_video_decode_accelerator_helpers.h#newcode34 content/public/common/gpu_video_decode_accelerator_helpers.h:34: struct gpu_vda_helpers { On 2016/03/04 ...
4 years, 9 months ago (2016-03-07 02:02:02 UTC) #28
jochen (gone - plz use gerrit)
lgtm
4 years, 9 months ago (2016-03-07 12:02:57 UTC) #29
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1745903002/160001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1745903002/160001
4 years, 9 months ago (2016-03-09 07:42:18 UTC) #32
commit-bot: I haz the power
Try jobs failed on following builders: mac_chromium_compile_dbg_ng on tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/mac_chromium_compile_dbg_ng/builds/170780) mac_chromium_gn_rel on tryserver.chromium.mac (JOB_FAILED, ...
4 years, 9 months ago (2016-03-09 07:44:40 UTC) #34
jam
not lgtm yet my comment about motivation and tracking bug is still not addressed https://codereview.chromium.org/1745903002/diff/260001/content/public/common/gpu_video_decode_accelerator_factory.h ...
4 years, 9 months ago (2016-03-14 15:58:29 UTC) #37
jam
ok after looking at this some more. i think the helper file isn't needed. my ...
4 years, 9 months ago (2016-03-15 18:25:38 UTC) #38
Pawel Osciak
PTAL, removed gpu_vda namespace, moved factory header to content/public/gpu and helpers header to content/common/gpu/media.
4 years, 9 months ago (2016-03-16 06:03:30 UTC) #41
kcwu
nits https://chromiumcodereview.appspot.com/1745903002/diff/300001/content/common/gpu/media/gpu_video_decode_accelerator_helpers.h File content/common/gpu/media/gpu_video_decode_accelerator_helpers.h (right): https://chromiumcodereview.appspot.com/1745903002/diff/300001/content/common/gpu/media/gpu_video_decode_accelerator_helpers.h#newcode4 content/common/gpu/media/gpu_video_decode_accelerator_helpers.h:4: #ifndef CONTENT_COMMON_GPU_MEDIA_GPU_VIDEO_DECODE_ACCELERATOR_HELPERS_H_ add blank line before #ifndef https://chromiumcodereview.appspot.com/1745903002/diff/300001/content/public/gpu/gpu_video_decode_accelerator_factory.h ...
4 years, 9 months ago (2016-03-16 06:26:37 UTC) #42
Pawel Osciak
Now passing GpuPreferences to the factory after rebase. PTAL. https://chromiumcodereview.appspot.com/1745903002/diff/300001/content/common/gpu/media/gpu_video_decode_accelerator_helpers.h File content/common/gpu/media/gpu_video_decode_accelerator_helpers.h (right): https://chromiumcodereview.appspot.com/1745903002/diff/300001/content/common/gpu/media/gpu_video_decode_accelerator_helpers.h#newcode4 content/common/gpu/media/gpu_video_decode_accelerator_helpers.h:4: ...
4 years, 9 months ago (2016-03-16 09:50:10 UTC) #43
jam
https://codereview.chromium.org/1745903002/diff/260001/content/public/common/gpu_video_decode_accelerator_factory.h File content/public/common/gpu_video_decode_accelerator_factory.h (right): https://codereview.chromium.org/1745903002/diff/260001/content/public/common/gpu_video_decode_accelerator_factory.h#newcode45 content/public/common/gpu_video_decode_accelerator_factory.h:45: GpuVideoDecodeAcceleratorFactory( On 2016/03/14 15:58:29, jam wrote: > this section ...
4 years, 9 months ago (2016-03-16 20:56:43 UTC) #45
Pawel Osciak
Thanks for comments. PTAL. https://chromiumcodereview.appspot.com/1745903002/diff/260001/content/public/common/gpu_video_decode_accelerator_factory.h File content/public/common/gpu_video_decode_accelerator_factory.h (right): https://chromiumcodereview.appspot.com/1745903002/diff/260001/content/public/common/gpu_video_decode_accelerator_factory.h#newcode45 content/public/common/gpu_video_decode_accelerator_factory.h:45: GpuVideoDecodeAcceleratorFactory( On 2016/03/16 20:56:43, jam ...
4 years, 9 months ago (2016-03-17 11:15:16 UTC) #46
jam
https://chromiumcodereview.appspot.com/1745903002/diff/260001/content/public/common/gpu_video_decode_accelerator_factory.h File content/public/common/gpu_video_decode_accelerator_factory.h (right): https://chromiumcodereview.appspot.com/1745903002/diff/260001/content/public/common/gpu_video_decode_accelerator_factory.h#newcode45 content/public/common/gpu_video_decode_accelerator_factory.h:45: GpuVideoDecodeAcceleratorFactory( On 2016/03/17 11:15:16, Pawel Osciak wrote: > On ...
4 years, 9 months ago (2016-03-17 15:43:26 UTC) #47
jam
lgtm https://chromiumcodereview.appspot.com/1745903002/diff/260001/content/public/common/gpu_video_decode_accelerator_factory.h File content/public/common/gpu_video_decode_accelerator_factory.h (right): https://chromiumcodereview.appspot.com/1745903002/diff/260001/content/public/common/gpu_video_decode_accelerator_factory.h#newcode45 content/public/common/gpu_video_decode_accelerator_factory.h:45: GpuVideoDecodeAcceleratorFactory( On 2016/03/17 15:43:26, jam wrote: > On ...
4 years, 9 months ago (2016-03-18 01:18:56 UTC) #48
jam
https://codereview.chromium.org/1745903002/diff/440001/content/DEPS File content/DEPS (right): https://codereview.chromium.org/1745903002/diff/440001/content/DEPS#newcode12 content/DEPS:12: "+content/public/gpu", sorry just saw this. don't add it. code ...
4 years, 9 months ago (2016-03-21 14:40:00 UTC) #50
Pawel Osciak
https://chromiumcodereview.appspot.com/1745903002/diff/440001/content/DEPS File content/DEPS (right): https://chromiumcodereview.appspot.com/1745903002/diff/440001/content/DEPS#newcode12 content/DEPS:12: "+content/public/gpu", On 2016/03/21 14:39:59, jam wrote: > sorry just ...
4 years, 9 months ago (2016-03-23 07:12:42 UTC) #51
jam
still lgtm
4 years, 9 months ago (2016-03-24 00:21:50 UTC) #53
Pawel Osciak
PTAL at the additional changes in BUILD.gn and DEPS files in latest PS. Thank you!
4 years, 9 months ago (2016-03-24 09:16:33 UTC) #57
jam
On 2016/03/24 09:16:33, Pawel Osciak wrote: > PTAL at the additional changes in BUILD.gn and ...
4 years, 9 months ago (2016-03-24 21:57:20 UTC) #58
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1745903002/580001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1745903002/580001
4 years, 9 months ago (2016-03-25 00:38:54 UTC) #61
commit-bot: I haz the power
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/194226)
4 years, 9 months ago (2016-03-25 00:46:26 UTC) #63
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1745903002/600001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1745903002/600001
4 years, 9 months ago (2016-03-25 01:22:32 UTC) #66
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_rel_ng on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_rel_ng/builds/201894)
4 years, 9 months ago (2016-03-25 04:45:53 UTC) #68
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1745903002/600001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1745903002/600001
4 years, 9 months ago (2016-03-25 04:47:03 UTC) #70
commit-bot: I haz the power
Committed patchset #22 (id:600001)
4 years, 9 months ago (2016-03-25 06:02:33 UTC) #71
commit-bot: I haz the power
Patchset 22 (id:??) landed as https://crrev.com/6977e5243786901a766a38c2c291464875dffbd6 Cr-Commit-Position: refs/heads/master@{#383256}
4 years, 9 months ago (2016-03-25 06:04:03 UTC) #73
boliu
On 2016/03/25 06:04:03, commit-bot: I haz the power wrote: > Patchset 22 (id:??) landed as ...
4 years, 9 months ago (2016-03-25 16:36:08 UTC) #74
boliu
https://codereview.chromium.org/1745903002/diff/600001/content/public/gpu/BUILD.gn File content/public/gpu/BUILD.gn (right): https://codereview.chromium.org/1745903002/diff/600001/content/public/gpu/BUILD.gn#newcode33 content/public/gpu/BUILD.gn:33: "//gpu/config:config_sources", The problem was gpu/command_buffer/service and gpu/config are being ...
4 years, 9 months ago (2016-03-25 17:49:08 UTC) #76
brettw
https://codereview.chromium.org/1745903002/diff/600001/gpu/config/BUILD.gn File gpu/config/BUILD.gn (right): https://codereview.chromium.org/1745903002/diff/600001/gpu/config/BUILD.gn#newcode28 gpu/config/BUILD.gn:28: "//content/public/gpu/*", For author and reviewers: this change was incorrect. ...
4 years, 9 months ago (2016-03-25 17:49:39 UTC) #78
brettw
I'm going to revert, I think there are too many problems.
4 years, 9 months ago (2016-03-25 17:52:47 UTC) #79
brettw
4 years, 9 months ago (2016-03-25 17:53:57 UTC) #80
Message was sent while issue was closed.
A revert of this CL (patchset #22 id:600001) has been created in
https://codereview.chromium.org/1832123002/ by brettw@chromium.org.

The reason for reverting is: Too many problems: Android, Win64 linking,
component linking (duplicate code die to incorrect visibility).

Powered by Google App Engine
This is Rietveld 408576698