aboutsummaryrefslogtreecommitdiffhomepage
path: root/projects/brotli
Commit message (Collapse)AuthorAge
* [presubmit] Enforce language attribute in project.yaml to be always set. (#3477)Gravatar Max Moroz2020-03-10
| | | | | | | | | | | | | | | | | | | * [presubmit] Enforce language attribute in projectt.yaml to be always set. * Update documentation, better presubmit check, new project template. * add docstring to templates.py * Add example values in the project.yaml template and remove python value for now * Add "project: c++" to 256 projects * format * Add labels and selective_unpack sections to the presubmit check * fix incorrect auto_ccs format in three projects * fix nss emails after rebase
* Update multiple vendor_ccs lists (#3091)Gravatar Tyson Smith2019-12-10
| | | * Update and add more Mozilla employees
* Add Mozilla fuzzing team to auto_cc of their used 3rd party libraries (#2703)Gravatar Christoph Diehl2019-08-28
| | | | | | | | | | * Add Mozilla fuzzing team to auto_cc of their used 3rd party libraries * Use new vendor_ccs field in projects.yml (#2703) * Remove not yet approved projects * Remove not yet approved projects
* Enable i386 fuzzing on 18 projects (#2748)Gravatar jonathanmetzman2019-08-22
| | | | Maintainers who own these projects: If you don't want i386 fuzzing, feel free to disable. I figured i386 fuzzing is generally desirable since it can find more bugs but most projects won't switch because of inertia.
* Enable dataflow for 9 projects written in C (#1632).Gravatar Max Moroz2019-06-28
|
* Migrate projects using -lFuzzingEngine to $LIB_FUZZING_ENGINE (#2325)Gravatar jonathanmetzman2019-05-01
| | | Migrate from -lFuzzingEngine to $LIB_FUZZING_ENGINE where possible and not causing breakage
* [brotli] Split compile and link actions (#1554)Gravatar Eugene Kliuchnikov2018-06-22
| | | | | Source code have to be compiled by CC, but linked with CXX. Context: https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=8976
* Switch compiler CXX->CC (#1544)Gravatar Eugene Kliuchnikov2018-06-20
|
* Update brotli build script (#1528)Gravatar Eugene Kliuchnikov2018-06-18
| | | Brotli fuzzer is being converted to C99 in google/brotli#686
* Update build script (#860)Gravatar Eugene Kliuchnikov2017-09-25
|
* Use apt-get update && apt-get install, per best practices: (#561)Gravatar Devin Jeanpierre2017-05-01
| | | | | | | | | | | | | | | | | | | https://docs.docker.com/engine/userguide/eng-image/dockerfile_best-practices/ I ran into this because I was getting errors locally, like: E: Failed to fetch http://archive.ubuntu.com/ubuntu/pool/main/d/dpkg/libdpkg-perl_1.18.4ubuntu1.1_all.deb 404 Not Found [IP: 91.189.88.149 80] It turns out you get these if you don't update, and the official best practices are to `run apt-get update && apt-get install`. In fact, running _any_ apt-get install command without the apt-get update && before it can result in unfortunate caching artifacts -- see "cache busting". (P.S. thanks to Peng on Freenode for helping me, I'm bad at Ubuntu.) So: sed -re \ 's/RUN apt-get ((-y )?(install|build-dep))/RUN apt-get update \&\& apt-get \1/' -i \ projects/**/Dockerfile I also manually fixed the cases that already ran apt-get update in their Dockerfile: dlplibs/Dockerfile grpc/Dockerfile libreoffice/Dockerfile
* Update build.shGravatar Oliver Chang2017-04-24
|
* Update build.shGravatar Oliver Chang2017-04-24
|
* Remove experimental flag from already tested projects with msan(#473) (#513)Gravatar Abhishek Arya2017-04-04
|
* oss-fuzz/BASE_IMAGE -> oss-fuzz-base/BASE_IMAGEGravatar Oliver Chang2017-03-22
|
* Enable Msan experimentally for some projects (#473).Gravatar Oliver Chang2017-03-21
|
* [infra] ossfuzz/IMAGE -> gcr.io/oss-fuzz/IMAGEGravatar Oliver Chang2017-03-15
|
* Fix brotli seed corpus pathGravatar Abhishek Arya2017-03-02
|
* [infra] updating usages of base-libfuzzer (#142)Gravatar Mike Aizatsky2017-01-03
|
* [brotli] remove executable bit from archiveGravatar Mike Aizatsky2016-12-08
|
* Add brotli fuzzer (#143)Gravatar Eugene Kliuchnikov2016-12-08
* Add brotli fuzzer * Add brotli fuzzer * Move fuzzer code to brotli repository