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

Issue 1956893002: Added brotli enc/ and tools/ directories. (Closed)

Created:
4 years, 7 months ago by smaier
Modified:
4 years, 7 months ago
CC:
chromium-reviews
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Added brotli enc/ and tools/ directories. BUG=332521 Committed: https://crrev.com/cdf50b7c6ae3ba7c64c5f619d46bf9b157b07cfb Cr-Commit-Position: refs/heads/master@{#393898}

Patch Set 1 #

Patch Set 2 : Removed unused files #

Patch Set 3 : Split large file into 2, fixed Windows build issue #

Total comments: 2

Patch Set 4 : Attempted fix for Windows build #

Patch Set 5 : Added license to other half of split static_dict_lut.h #

Patch Set 6 : Presubmit passing in both ways it can be run #

Patch Set 7 : Updated to most recent build tools #

Unified diffs Side-by-side diffs Delta from patch set Stats (+28271 lines, -47 lines) Patch
D third_party/brotli/.gitignore View 1 2 3 4 5 6 1 chunk +0 lines, -5 lines 0 comments Download
M third_party/brotli/BUILD.gn View 1 2 3 4 5 6 1 chunk +67 lines, -0 lines 0 comments Download
M third_party/brotli/README.chromium View 1 2 3 4 5 6 2 chunks +6 lines, -4 lines 0 comments Download
A third_party/brotli/brotli.gni View 1 2 3 4 5 6 1 chunk +35 lines, -0 lines 0 comments Download
D third_party/brotli/dec/Makefile View 1 2 3 4 5 6 1 chunk +0 lines, -12 lines 0 comments Download
M third_party/brotli/dec/decode.h View 1 2 3 4 5 6 1 chunk +3 lines, -2 lines 0 comments Download
M third_party/brotli/dec/decode.c View 1 2 3 4 5 6 5 chunks +12 lines, -9 lines 0 comments Download
M third_party/brotli/dec/state.h View 1 2 3 4 5 6 1 chunk +1 line, -1 line 0 comments Download
A third_party/brotli/enc/backward_references.h View 1 2 3 4 5 6 1 chunk +116 lines, -0 lines 0 comments Download
A third_party/brotli/enc/backward_references.cc View 1 2 3 4 5 6 1 chunk +858 lines, -0 lines 0 comments Download
A third_party/brotli/enc/bit_cost.h View 1 2 3 4 5 6 1 chunk +161 lines, -0 lines 0 comments Download
A third_party/brotli/enc/block_splitter.h View 1 2 3 4 5 6 1 chunk +61 lines, -0 lines 0 comments Download
A third_party/brotli/enc/block_splitter.cc View 1 2 3 4 5 6 1 chunk +505 lines, -0 lines 0 comments Download
A third_party/brotli/enc/brotli_bit_stream.h View 1 2 3 4 5 6 1 chunk +179 lines, -0 lines 0 comments Download
A third_party/brotli/enc/brotli_bit_stream.cc View 1 2 3 4 5 6 1 chunk +1181 lines, -0 lines 0 comments Download
A third_party/brotli/enc/cluster.h View 1 2 3 4 5 6 1 chunk +330 lines, -0 lines 0 comments Download
A third_party/brotli/enc/command.h View 1 2 3 4 5 6 1 chunk +156 lines, -0 lines 0 comments Download
A third_party/brotli/enc/compress_fragment.h View 1 2 3 4 5 6 1 chunk +47 lines, -0 lines 0 comments Download
A third_party/brotli/enc/compress_fragment.cc View 1 2 3 4 5 6 1 chunk +701 lines, -0 lines 0 comments Download
A third_party/brotli/enc/compress_fragment_two_pass.h View 1 2 3 4 5 6 1 chunk +40 lines, -0 lines 0 comments Download
A third_party/brotli/enc/compress_fragment_two_pass.cc View 1 2 3 4 5 6 1 chunk +524 lines, -0 lines 0 comments Download
A third_party/brotli/enc/compressor.h View 1 2 3 4 5 6 1 chunk +15 lines, -0 lines 0 comments Download
A third_party/brotli/enc/context.h View 1 2 3 4 5 6 1 chunk +178 lines, -0 lines 0 comments Download
A + third_party/brotli/enc/dictionary.h View 1 2 3 4 5 6 2 chunks +13 lines, -10 lines 0 comments Download
A + third_party/brotli/enc/dictionary.cc View 1 2 3 4 5 6 2 chunks +4 lines, -4 lines 0 comments Download
A third_party/brotli/enc/dictionary_hash.h View 1 2 3 4 5 6 1 chunk +4117 lines, -0 lines 0 comments Download
A third_party/brotli/enc/encode.h View 1 2 3 4 5 6 1 chunk +207 lines, -0 lines 0 comments Download
A third_party/brotli/enc/encode.cc View 1 2 3 4 5 6 1 chunk +1175 lines, -0 lines 0 comments Download
A third_party/brotli/enc/encode_parallel.h View 1 2 3 4 5 6 1 chunk +28 lines, -0 lines 0 comments Download
A third_party/brotli/enc/encode_parallel.cc View 1 2 3 4 5 6 1 chunk +279 lines, -0 lines 0 comments Download
A third_party/brotli/enc/entropy_encode.h View 1 2 3 4 5 6 1 chunk +104 lines, -0 lines 0 comments Download
A third_party/brotli/enc/entropy_encode.cc View 1 2 3 4 5 6 1 chunk +480 lines, -0 lines 0 comments Download
A third_party/brotli/enc/entropy_encode_static.h View 1 2 3 4 5 6 1 chunk +572 lines, -0 lines 0 comments Download
A third_party/brotli/enc/fast_log.h View 1 2 3 4 5 6 1 chunk +139 lines, -0 lines 0 comments Download
A third_party/brotli/enc/find_match_length.h View 1 2 3 4 5 6 1 chunk +77 lines, -0 lines 0 comments Download
A third_party/brotli/enc/hash.h View 1 2 3 4 5 6 1 chunk +974 lines, -0 lines 0 comments Download
A third_party/brotli/enc/histogram.h View 1 2 3 4 5 6 1 chunk +94 lines, -0 lines 0 comments Download
A third_party/brotli/enc/histogram.cc View 1 2 3 4 5 6 1 chunk +67 lines, -0 lines 0 comments Download
A third_party/brotli/enc/literal_cost.h View 1 2 3 4 5 6 1 chunk +24 lines, -0 lines 0 comments Download
A third_party/brotli/enc/literal_cost.cc View 1 2 3 4 5 6 1 chunk +165 lines, -0 lines 0 comments Download
A third_party/brotli/enc/metablock.h View 1 2 3 4 5 6 1 chunk +80 lines, -0 lines 0 comments Download
A third_party/brotli/enc/metablock.cc View 1 2 3 4 5 6 1 chunk +539 lines, -0 lines 0 comments Download
A third_party/brotli/enc/port.h View 1 2 3 4 5 6 1 chunk +142 lines, -0 lines 0 comments Download
A third_party/brotli/enc/prefix.h View 1 2 3 4 5 6 1 chunk +79 lines, -0 lines 0 comments Download
A third_party/brotli/enc/ringbuffer.h View 1 2 3 4 5 6 1 chunk +145 lines, -0 lines 0 comments Download
A third_party/brotli/enc/static_dict.h View 1 2 3 4 5 6 1 chunk +32 lines, -0 lines 0 comments Download
A third_party/brotli/enc/static_dict.cc View 1 2 3 4 5 6 1 chunk +455 lines, -0 lines 0 comments Download
A third_party/brotli/enc/static_dict_lut.h View 1 2 3 4 5 6 1 chunk +4127 lines, -0 lines 0 comments Download
A third_party/brotli/enc/static_dict_lut2.h View 1 2 3 4 5 6 1 chunk +7934 lines, -0 lines 0 comments Download
A third_party/brotli/enc/streams.h View 1 2 3 4 5 6 1 chunk +121 lines, -0 lines 0 comments Download
A third_party/brotli/enc/streams.cc View 1 2 3 4 5 6 1 chunk +114 lines, -0 lines 0 comments Download
A third_party/brotli/enc/transform.h View 1 2 3 4 5 6 1 chunk +248 lines, -0 lines 0 comments Download
A third_party/brotli/enc/types.h View 1 2 3 4 5 6 1 chunk +29 lines, -0 lines 0 comments Download
A third_party/brotli/enc/utf8_util.h View 1 2 3 4 5 6 1 chunk +25 lines, -0 lines 0 comments Download
A third_party/brotli/enc/utf8_util.cc View 1 2 3 4 5 6 1 chunk +83 lines, -0 lines 0 comments Download
A third_party/brotli/enc/write_bits.h View 1 2 3 4 5 6 1 chunk +84 lines, -0 lines 0 comments Download
A third_party/brotli/tools/DEPS View 1 2 3 4 5 6 1 chunk +4 lines, -0 lines 0 comments Download
A third_party/brotli/tools/bro.cc View 1 2 3 4 5 6 1 chunk +335 lines, -0 lines 0 comments Download

Messages

Total messages: 39 (18 generated)
smaier
This review is missing the file "third_party/brotli/enc/static_dict_lut.h". It is a large file (~1MB), and according ...
4 years, 7 months ago (2016-05-06 19:00:01 UTC) #1
smaier
phajdan.jr@chromium.org: Please review changes in PRESUBMIT.py
4 years, 7 months ago (2016-05-06 19:03:29 UTC) #5
bashi
rubber-stamp lgtm.
4 years, 7 months ago (2016-05-09 00:42:58 UTC) #6
eustas
rfc-format.py and version.h are not used.
4 years, 7 months ago (2016-05-09 09:04:31 UTC) #8
Paweł Hajdan Jr.
+brettw,jam for the PRESUBMIT change ; it affects checkdeps, so wanted to get your advice
4 years, 7 months ago (2016-05-10 14:24:15 UTC) #10
jam
On 2016/05/10 14:24:15, Paweł Hajdan Jr. wrote: > +brettw,jam for the PRESUBMIT change ; it ...
4 years, 7 months ago (2016-05-10 18:11:54 UTC) #11
brettw
lgtm
4 years, 7 months ago (2016-05-11 17:55:54 UTC) #12
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1956893002/10001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1956893002/10001
4 years, 7 months ago (2016-05-11 18:01:13 UTC) #15
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_clobber_rel_ng on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_clobber_rel_ng/builds/172777)
4 years, 7 months ago (2016-05-11 18:29:29 UTC) #17
agrieve
https://codereview.chromium.org/1956893002/diff/20001/third_party/brotli/BUILD.gn File third_party/brotli/BUILD.gn (right): https://codereview.chromium.org/1956893002/diff/20001/third_party/brotli/BUILD.gn#newcode94 third_party/brotli/BUILD.gn:94: configs -= [ "//build/config/gcc:no_exceptions" ] Found in brotli/setup.py that ...
4 years, 7 months ago (2016-05-12 01:38:33 UTC) #19
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1956893002/50001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1956893002/50001
4 years, 7 months ago (2016-05-12 18:35:30 UTC) #22
smaier
https://codereview.chromium.org/1956893002/diff/20001/third_party/brotli/BUILD.gn File third_party/brotli/BUILD.gn (right): https://codereview.chromium.org/1956893002/diff/20001/third_party/brotli/BUILD.gn#newcode94 third_party/brotli/BUILD.gn:94: configs -= [ "//build/config/gcc:no_exceptions" ] On 2016/05/12 01:38:33, agrieve ...
4 years, 7 months ago (2016-05-12 18:36:46 UTC) #23
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_clobber_rel_ng on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_clobber_rel_ng/builds/173507)
4 years, 7 months ago (2016-05-12 19:42:26 UTC) #25
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1956893002/50001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1956893002/50001
4 years, 7 months ago (2016-05-12 19:59:26 UTC) #27
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_clobber_rel_ng on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_clobber_rel_ng/builds/173566)
4 years, 7 months ago (2016-05-12 21:03:55 UTC) #29
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1956893002/60001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1956893002/60001
4 years, 7 months ago (2016-05-16 18:16:08 UTC) #32
commit-bot: I haz the power
Committed patchset #7 (id:60001)
4 years, 7 months ago (2016-05-16 19:33:47 UTC) #34
commit-bot: I haz the power
Patchset 7 (id:??) landed as https://crrev.com/cdf50b7c6ae3ba7c64c5f619d46bf9b157b07cfb Cr-Commit-Position: refs/heads/master@{#393898}
4 years, 7 months ago (2016-05-16 19:35:14 UTC) #36
brucedawson
On 2016/05/16 19:35:14, commit-bot: I haz the power wrote: > Patchset 7 (id:??) landed as ...
4 years, 7 months ago (2016-05-16 23:42:20 UTC) #37
brucedawson
I opened crbug.com/612349 for the Windows build failures. I'm working around them locally.
4 years, 7 months ago (2016-05-17 00:31:17 UTC) #38
eustas
4 years, 7 months ago (2016-05-17 11:00:54 UTC) #39
Message was sent while issue was closed.
On 2016/05/17 00:31:17, brucedawson wrote:
> I opened crbug.com/612349 for the Windows build failures. I'm working around
> them locally.

This is fixed in internal brotli repo. Unfortunately, there is big change to
encoder in process -> not published to github repo.

Powered by Google App Engine
This is Rietveld 408576698