fuzzing: Recommend cros-fuzzer eclass.

We have refactored most of the fuzzing functions into cros-fuzzer
eclass. Update docs to reflect that.

BUG=chromium:860785
TEST=None

Change-Id: Iefac7c1effa9a6459b28843ebe0dab27f2804e23
Reviewed-on: https://chromium-review.googlesource.com/1144443
Commit-Ready: Manoj Gupta <manojgupta@chromium.org>
Tested-by: Manoj Gupta <manojgupta@chromium.org>
Reviewed-by: Dan Erat <derat@chromium.org>
1 file changed
tree: 3763be7462835a4d255c51eb82eff8e9724b1ccc
  1. ca_certs.md
  2. chrome_commit_pipeline.md
  3. COMMIT-QUEUE.ini
  4. containers_and_vms.md
  5. cros_commit_pipeline.md
  6. cros_vm.md
  7. dbus_best_practices.md
  8. dbus_in_chrome.md
  9. developer_guide.md
  10. development_basics.md
  11. fuzzing.md
  12. navbar.md
  13. PRESUBMIT.cfg
  14. README.md
  15. reporting_bugs.md
  16. rust_on_cros.md
  17. sandboxing.md
  18. security_review_howto.md
  19. security_severity_guidelines.md
  20. simple_chrome_workflow.md
  21. unit_tests.md
README.md

Chromium OS docs

This directory contains public Chromium OS project documentation that is automatically rendered by Gitiles. The docs are written in Gitiles-flavored Markdown.

General guidelines

See the Chromium documentation guidelines and Chromium documentation best practices.

Style guide

Markdown documents must follow the style guide.

Making changes

This repository is managed by the repo tool, so you can make changes to it using the same techniques that you'd use for any other repositories in the project. Feel free to bypass the commit queue and commit changes immediately after they are reviewed.

Making changes without repo

You can also make changes to this repository without using the repo tool. This comes in handy when you don't have a Chromium OS checkout:

git clone https://chromium.googlesource.com/chromiumos/docs
curl -Lo .git/hooks/commit-msg https://gerrit-review.googlesource.com/tools/hooks/commit-msg
chmod +x .git/hooks/commit-msg
cd docs
git checkout -b changes
(make some changes)
git commit -a
git push origin HEAD:refs/for/master

The above steps will upload a patch to chromium-review.googlesource.com where you can get your patch reviewed, and submit.

Previewing changes

You can preview your local changes using md_browser:

# at top of Chromium OS checkout
./chromium/src/tools/md_browser/md_browser.py -d docs

Then browse to e.g. http://localhost:8080/README.md.

To review someone else's changes, apply them locally first, or just click the gitiles link near the top of a Gerrit file diff page.