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

Issue 1180983002: Switch SkJpegCode to libjpeg-turbo (Closed)

Created:
5 years, 6 months ago by msarett
Modified:
5 years, 5 months ago
Reviewers:
scroggo, emmaleer, djsollen
CC:
reviews_skia.org
Base URL:
https://skia.googlesource.com/skia.git@master
Target Ref:
refs/heads/master
Project:
skia
Visibility:
Public.

Description

Add libjpeg-turbo library (depends on yasm) Mangle external function names to avoid conflict with libjpeg Take advantage of direct color conversion (RGBA, BGRA, 565) Prepare to use jpeg_skip_scanlines (when it is upstreamed) BUG=skia: Committed: https://skia.googlesource.com/skia/+/b60c3f8291529303299262dba19b1a896060bd2d Committed: https://skia.googlesource.com/skia/+/f8bf9181d7b0463c8e371755cfbb9ece90b34fc5 Committed: https://skia.googlesource.com/skia/+/e9e3ee33f30c14c31afd5fc3fe4dda7f15783c75 Committed: https://skia.googlesource.com/skia/+/40141b57f061fbfcc2fa38da942d9efe25aca4d0 Committed: https://skia.googlesource.com/skia/+/1c8a587120fd33854974457cf2a795ead98183a9

Patch Set 1 : #

Total comments: 30

Patch Set 2 : Rebase #

Patch Set 3 : #

Patch Set 4 : Rebase 2 #

Total comments: 6

Patch Set 5 : Update to libjpeg-turbo.gyp #

Patch Set 6 : #

Patch Set 7 : Rebase 3 #

Patch Set 8 : Adding READMEs and comments #

Total comments: 15

Patch Set 9 : Adding turbo to DEPS #

Total comments: 6

Patch Set 10 : Mangle turbo names instead #

Patch Set 11 : Use a tag in DEPS #

Total comments: 5

Patch Set 12 : Switch to libjpeg-turbo trunk and broken bot fixes #

Patch Set 13 : yasm config files for chromeos #

Patch Set 14 : Mips test #

Patch Set 15 : Mips test 2 #

Patch Set 16 : mips test 3 #

Patch Set 17 : Mips simd only on mips64 #

Patch Set 18 : Use arm 64 #

Patch Set 19 : Android x86 fix #

Patch Set 20 : Removing yasm binary for testing #

Patch Set 21 : Turn off codec on skia android framework #

Patch Set 22 : cros #

Patch Set 23 : cros 2 #

Patch Set 24 : cros 3 #

Total comments: 6

Patch Set 25 : Minor fixes #

Patch Set 26 : Disable ASAN for building yasm #

Patch Set 27 : ASAN 2 #

Patch Set 28 : Merge #

Patch Set 29 : Fix ios #

Patch Set 30 : Fix xcode builds #

Unified diffs Side-by-side diffs Delta from patch set Stats (+29365 lines, -186 lines) Patch
M DEPS View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 1 chunk +5 lines, -0 lines 0 comments Download
M dm/DM.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 1 chunk +1 line, -1 line 0 comments Download
M gyp/codec.gyp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 2 chunks +17 lines, -1 line 0 comments Download
A gyp/libjpeg-turbo.gyp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 1 chunk +344 lines, -0 lines 0 comments Download
A gyp/yasm.gyp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 1 chunk +647 lines, -0 lines 0 comments Download
M src/codec/SkCodec.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 2 chunks +4 lines, -0 lines 0 comments Download
M src/codec/SkJpegCodec.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 2 chunks +7 lines, -2 lines 0 comments Download
M src/codec/SkJpegCodec.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 11 chunks +148 lines, -167 lines 0 comments Download
M src/codec/SkJpegDecoderMgr.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 1 chunk +1 line, -0 lines 0 comments Download
M src/codec/SkJpegDecoderMgr.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 2 chunks +1 line, -14 lines 0 comments Download
M src/codec/SkJpegUtility_codec.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 1 chunk +1 line, -0 lines 0 comments Download
M src/codec/SkJpegUtility_codec.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 1 chunk +1 line, -1 line 0 comments Download
A third_party/yasm/README.skia View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 1 chunk +138 lines, -0 lines 0 comments Download
A third_party/yasm/config/android/Makefile View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 1 chunk +3822 lines, -0 lines 0 comments Download
A third_party/yasm/config/android/config.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 1 chunk +173 lines, -0 lines 0 comments Download
A third_party/yasm/config/android/libyasm-stdint.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 1 chunk +9 lines, -0 lines 0 comments Download
A third_party/yasm/config/chromeos/Makefile View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 1 chunk +3822 lines, -0 lines 0 comments Download
A third_party/yasm/config/chromeos/config.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 1 chunk +173 lines, -0 lines 0 comments Download
A third_party/yasm/config/chromeos/libyasm-stdint.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 1 chunk +9 lines, -0 lines 0 comments Download
A third_party/yasm/config/ios/Makefile View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 1 chunk +3822 lines, -0 lines 0 comments Download
A third_party/yasm/config/ios/config.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 1 chunk +173 lines, -0 lines 0 comments Download
A third_party/yasm/config/ios/libyasm-stdint.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 1 chunk +9 lines, -0 lines 0 comments Download
A third_party/yasm/config/linux/Makefile View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 1 chunk +3822 lines, -0 lines 0 comments Download
A third_party/yasm/config/linux/config.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 1 chunk +173 lines, -0 lines 0 comments Download
A third_party/yasm/config/linux/libyasm-stdint.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 1 chunk +9 lines, -0 lines 0 comments Download
A third_party/yasm/config/mac/Makefile View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 1 chunk +3822 lines, -0 lines 0 comments Download
A third_party/yasm/config/mac/config.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 1 chunk +173 lines, -0 lines 0 comments Download
A third_party/yasm/config/mac/libyasm-stdint.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 1 chunk +9 lines, -0 lines 0 comments Download
A third_party/yasm/config/openbsd/Makefile View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 1 chunk +3822 lines, -0 lines 0 comments Download
A third_party/yasm/config/openbsd/config.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 1 chunk +165 lines, -0 lines 0 comments Download
A third_party/yasm/config/openbsd/libyasm-stdint.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 1 chunk +9 lines, -0 lines 0 comments Download
A third_party/yasm/config/win/Makefile View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 1 chunk +3822 lines, -0 lines 0 comments Download
A third_party/yasm/config/win/config.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 1 chunk +173 lines, -0 lines 0 comments Download
A third_party/yasm/config/win/libyasm-stdint.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 1 chunk +9 lines, -0 lines 0 comments Download
A third_party/yasm/config/win/stdint.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 1 chunk +30 lines, -0 lines 0 comments Download

Depends on Patchset:

Messages

Total messages: 155 (85 generated)
msarett
5 years, 6 months ago (2015-06-15 23:58:29 UTC) #6
djsollen
https://codereview.chromium.org/1180983002/diff/80001/platform_tools/android/bin/android_perf File platform_tools/android/bin/android_perf (right): https://codereview.chromium.org/1180983002/diff/80001/platform_tools/android/bin/android_perf#newcode44 platform_tools/android/bin/android_perf:44: adb_pull_if_needed /system/lib/libstdc++.so $TMP_SYS_LIB can you upload this as a ...
5 years, 6 months ago (2015-06-16 19:33:30 UTC) #7
scroggo
I know you mentioned this was not for landing, but I think with some cleanups ...
5 years, 6 months ago (2015-06-16 20:39:23 UTC) #8
msarett
I made the suggested fixes! libjpeg-turbo.gyp is a work in progress. I don't think it ...
5 years, 6 months ago (2015-06-18 21:06:11 UTC) #13
msarett
Also I forgot to ask what the procedure is for committing changes to the libraries ...
5 years, 6 months ago (2015-06-18 21:07:58 UTC) #14
msarett
This version is worth testing on all of our platforms because it might actually work. ...
5 years, 6 months ago (2015-06-19 16:03:38 UTC) #15
scroggo
On 2015/06/18 21:06:11, msarett wrote: > I made the suggested fixes! > > libjpeg-turbo.gyp is ...
5 years, 6 months ago (2015-06-19 16:11:25 UTC) #16
scroggo
On 2015/06/19 16:03:38, msarett wrote: > This version is worth testing on all of our ...
5 years, 6 months ago (2015-06-19 17:35:35 UTC) #17
msarett
This CL has a few small changes to the source code and a lot of ...
5 years, 6 months ago (2015-06-22 22:36:04 UTC) #19
scroggo
On 2015/06/22 22:36:04, msarett wrote: > This CL has a few small changes to the ...
5 years, 6 months ago (2015-06-23 15:05:52 UTC) #20
msarett
One major outstanding problem which is that this almost definitely breaks the Android framework. I ...
5 years, 6 months ago (2015-06-23 17:47:43 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/1180983002/300001
5 years, 6 months ago (2015-06-23 17:48:37 UTC) #23
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: Build-Ubuntu-GCC-Mips-Debug-Android-Trybot on client.skia.compile (JOB_FAILED, http://build.chromium.org/p/client.skia.compile/builders/Build-Ubuntu-GCC-Mips-Debug-Android-Trybot/builds/906)
5 years, 6 months ago (2015-06-23 17:50:04 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/1180983002/310001
5 years, 6 months ago (2015-06-23 17:58:50 UTC) #27
commit-bot: I haz the power
Dry run: Exceeded global retry quota
5 years, 6 months ago (2015-06-23 18:01:19 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/1180983002/320001
5 years, 6 months ago (2015-06-23 18:20:36 UTC) #31
commit-bot: I haz the power
Dry run: Exceeded global retry quota
5 years, 6 months ago (2015-06-23 18:23:07 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/1180983002/330001
5 years, 6 months ago (2015-06-23 18:54:03 UTC) #35
commit-bot: I haz the power
Dry run: Exceeded global retry quota
5 years, 6 months ago (2015-06-23 18:56:23 UTC) #37
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1180983002/340001
5 years, 6 months ago (2015-06-23 19:01:44 UTC) #39
commit-bot: I haz the power
Dry run: Exceeded global retry quota
5 years, 6 months ago (2015-06-23 19:04:16 UTC) #41
scroggo
On Tue, Jun 23, 2015 at 1:47 PM, <msarett@google.com> wrote: > I will include this ...
5 years, 6 months ago (2015-06-23 19:08:35 UTC) #42
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1180983002/350001
5 years, 6 months ago (2015-06-24 15:32:48 UTC) #44
commit-bot: I haz the power
Dry run: Exceeded global retry quota
5 years, 6 months ago (2015-06-24 15:34:09 UTC) #46
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1180983002/360001
5 years, 6 months ago (2015-06-24 15:44:52 UTC) #48
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: Build-Win-MSVC-x86-Debug-Trybot on client.skia.compile (JOB_FAILED, http://build.chromium.org/p/client.skia.compile/builders/Build-Win-MSVC-x86-Debug-Trybot/builds/1675) Build-Win-MSVC-x86_64-Debug-Trybot on ...
5 years, 6 months ago (2015-06-24 15:49:25 UTC) #50
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1180983002/370001
5 years, 6 months ago (2015-06-24 16:54:40 UTC) #52
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: Build-Win-MSVC-x86-Debug-Trybot on client.skia.compile (JOB_FAILED, http://build.chromium.org/p/client.skia.compile/builders/Build-Win-MSVC-x86-Debug-Trybot/builds/1677) Build-Win-MSVC-x86_64-Debug-Trybot on ...
5 years, 6 months ago (2015-06-24 16:59:13 UTC) #54
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1180983002/390001
5 years, 6 months ago (2015-06-24 17:15:02 UTC) #56
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: Build-Win-MSVC-x86-Debug-Trybot on client.skia.compile (JOB_FAILED, http://build.chromium.org/p/client.skia.compile/builders/Build-Win-MSVC-x86-Debug-Trybot/builds/1683)
5 years, 6 months ago (2015-06-24 17:23:30 UTC) #58
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1180983002/400001
5 years, 6 months ago (2015-06-24 17:29:00 UTC) #60
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1180983002/410001
5 years, 6 months ago (2015-06-24 17:36:44 UTC) #62
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: Build-Win-MSVC-x86-Debug-Trybot on client.skia.compile (JOB_FAILED, http://build.chromium.org/p/client.skia.compile/builders/Build-Win-MSVC-x86-Debug-Trybot/builds/1687) Build-Win-MSVC-x86_64-Debug-Trybot on ...
5 years, 6 months ago (2015-06-24 17:42:35 UTC) #64
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1180983002/460001
5 years, 6 months ago (2015-06-24 18:28:48 UTC) #66
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: Build-Win-MSVC-x86-Debug-Trybot on client.skia.compile (JOB_FAILED, http://build.chromium.org/p/client.skia.compile/builders/Build-Win-MSVC-x86-Debug-Trybot/builds/1692)
5 years, 6 months ago (2015-06-24 18:33:19 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/1180983002/490001
5 years, 6 months ago (2015-06-24 18:53:54 UTC) #70
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: Build-Win-MSVC-x86_64-Debug-Trybot on client.skia.compile (JOB_FAILED, http://build.chromium.org/p/client.skia.compile/builders/Build-Win-MSVC-x86_64-Debug-Trybot/builds/1731)
5 years, 6 months ago (2015-06-24 18:58:38 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/1180983002/530001
5 years, 6 months ago (2015-06-24 19:55:23 UTC) #97
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
5 years, 6 months ago (2015-06-24 20:01:30 UTC) #99
msarett
Sorry for the spam emails all day. I switched to mangling turbo function names to ...
5 years, 6 months ago (2015-06-24 20:07:09 UTC) #100
scroggo
> WIP: Use libjpeg-turbo and jpeg_skip_scanlines() from SkJpegCodec > A look at how SkJpegCodec would ...
5 years, 6 months ago (2015-06-24 21:08:49 UTC) #101
djsollen
lgtm I'm fine landing the yasm configs here for now until we can find a ...
5 years, 6 months ago (2015-06-24 21:22:33 UTC) #102
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1180983002/540001
5 years, 6 months ago (2015-06-24 21:57:19 UTC) #104
commit-bot: I haz the power
Committed patchset #11 (id:540001) as https://skia.googlesource.com/skia/+/b60c3f8291529303299262dba19b1a896060bd2d
5 years, 6 months ago (2015-06-24 22:10:30 UTC) #105
mtklein
A revert of this CL (patchset #11 id:540001) has been created in https://codereview.chromium.org/1199253006/ by mtklein@google.com. ...
5 years, 6 months ago (2015-06-24 22:14:08 UTC) #106
mtklein
On 2015/06/24 22:14:08, mtklein wrote: > A revert of this CL (patchset #11 id:540001) has ...
5 years, 6 months ago (2015-06-24 22:14:44 UTC) #107
mtklein
On 2015/06/24 22:14:44, mtklein wrote: > On 2015/06/24 22:14:08, mtklein wrote: > > A revert ...
5 years, 6 months ago (2015-06-24 22:19:57 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/1180983002/550001
5 years, 6 months ago (2015-06-25 20:15:25 UTC) #111
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: Build-Mac10.8-Clang-x86_64-Release-Trybot on client.skia.compile (JOB_FAILED, http://build.chromium.org/p/client.skia.compile/builders/Build-Mac10.8-Clang-x86_64-Release-Trybot/builds/4145)
5 years, 6 months ago (2015-06-25 20:18:20 UTC) #113
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1180983002/620001
5 years, 6 months ago (2015-06-26 17:21:21 UTC) #116
commit-bot: I haz the power
Dry run: Exceeded global retry quota
5 years, 6 months ago (2015-06-26 17:22:13 UTC) #118
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1180983002/630001
5 years, 6 months ago (2015-06-26 18:07:19 UTC) #121
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
5 years, 6 months ago (2015-06-26 18:26:29 UTC) #123
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1180983002/640001
5 years, 6 months ago (2015-06-26 19:34:34 UTC) #126
msarett
Major changes: 1) The DEPS files now pulls in libjpeg-turbo trunk which has my skip ...
5 years, 6 months ago (2015-06-26 20:04:15 UTC) #127
scroggo
LGTM Just so I understand, what is the plan for enabling on Android framework? Will ...
5 years, 5 months ago (2015-06-29 14:05:51 UTC) #128
msarett
Yeah the plan is to check in libjpeg-turbo to Android (maybe AOSP). That way we ...
5 years, 5 months ago (2015-06-29 16:52:04 UTC) #129
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1180983002/680001
5 years, 5 months ago (2015-06-29 16:52:30 UTC) #132
commit-bot: I haz the power
Committed patchset #25 (id:680001) as https://skia.googlesource.com/skia/+/f8bf9181d7b0463c8e371755cfbb9ece90b34fc5
5 years, 5 months ago (2015-06-29 17:14:16 UTC) #133
msarett
A revert of this CL (patchset #25 id:680001) has been created in https://codereview.chromium.org/1214023003/ by msarett@google.com. ...
5 years, 5 months ago (2015-06-29 17:30:33 UTC) #134
mtklein
On 2015/06/29 17:30:33, msarett wrote: > A revert of this CL (patchset #25 id:680001) has ...
5 years, 5 months ago (2015-06-29 18:08:40 UTC) #135
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1180983002/710001
5 years, 5 months ago (2015-07-01 19:27:27 UTC) #139
commit-bot: I haz the power
Committed patchset #28 (id:710001) as https://skia.googlesource.com/skia/+/e9e3ee33f30c14c31afd5fc3fe4dda7f15783c75
5 years, 5 months ago (2015-07-01 19:36:24 UTC) #140
msarett
A revert of this CL (patchset #28 id:710001) has been created in https://codereview.chromium.org/1213093003/ by msarett@google.com. ...
5 years, 5 months ago (2015-07-01 20:10:42 UTC) #141
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1180983002/750001
5 years, 5 months ago (2015-07-01 21:33:17 UTC) #146
commit-bot: I haz the power
Committed patchset #29 (id:750001) as https://skia.googlesource.com/skia/+/40141b57f061fbfcc2fa38da942d9efe25aca4d0
5 years, 5 months ago (2015-07-01 21:41:09 UTC) #147
jvanverth1
A revert of this CL (patchset #29 id:750001) has been created in https://codereview.chromium.org/1226543003/ by jvanverth@google.com. ...
5 years, 5 months ago (2015-07-02 17:35:59 UTC) #148
scroggo
On 2015/07/02 17:35:59, jvanverth1 wrote: > A revert of this CL (patchset #29 id:750001) has ...
5 years, 5 months ago (2015-07-07 14:12:47 UTC) #149
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1180983002/800001
5 years, 5 months ago (2015-07-07 15:36:53 UTC) #154
commit-bot: I haz the power
5 years, 5 months ago (2015-07-07 15:50:07 UTC) #155
Message was sent while issue was closed.
Committed patchset #30 (id:800001) as
https://skia.googlesource.com/skia/+/1c8a587120fd33854974457cf2a795ead98183a9

Powered by Google App Engine
This is Rietveld 408576698