0
Files
src/docs/linux_development.md
xiaoyin.l 1003c0bc03 Use HTTPS links for Google domains in docs
Since almost all Google domains support HTTPS, and it is a good practice to
use HTTPS wherever possible, thus in this patch, I changed most HTTP links
to https whose domains are known to support HTTPS well.

Modifications are generated by running these commands in src/docs directory:
sed -i 's/http:\/\/www.chromium.org/https:\/\/www.chromium.org/g' *.md
sed -i 's/http:\/\/developer.android.com/https:\/\/developer.android.com/g' *.md
sed -i 's/http:\/\/dev.chromium.org/https:\/\/dev.chromium.org/g' *.md
sed -i 's/http:\/\/build.chromium.org/https:\/\/build.chromium.org/g' *.md
sed -i 's/http:\/\/src.chromium.org/https:\/\/src.chromium.org/g' *.md
sed -i 's/http:\/\/crbug.com/https:\/\/crbug.com/g' *.md
sed -i 's/http:\/\/groups.google.com/https:\/\/groups.google.com/g' *.md
sed -i 's/http:\/\/cs.chromium.org/https:\/\/cs.chromium.org/g' *.md
sed -i 's/http:\/\/codereview.chromium.org/https:\/\/codereview.chromium.org/g' *.md

BUG=

Review-Url: https://codereview.chromium.org/2545363002
Cr-Commit-Position: refs/heads/master@{#436501}
2016-12-06 02:53:51 +00:00

45 lines
1.4 KiB
Markdown

# Linux Development
*** promo
Please join us on IRC for the most up-to-date development discussion:
`irc.freenode.net`, `#chromium`.
***
## Checkout and Build
See the [Linux build instructions](linux_build_instructions.md).
## What Needs Work
Look at the Chromium bug tracker for
[open Linux issues](http://code.google.com/p/chromium/issues/list?can=2&q=os%3Alinux).
Issues marked "Available" are ready for someone to claim. To claim an issue, add
a comment and then a project member will mark it "Assigned". If none of the
"Available" issues seem appropriate, you may be able to help an already claimed
("Assigned" or "Started") issue, but you'll probably want to coordinate with the
claimants, to avoid unnecessary duplication of effort.
Issues marked with HelpWanted are a good place to start.
### New Bugs
If you think you have discovered a new Linux bug, start by
[searching for similar issues](http://code.google.com/p/chromium/issues/list?can=1&q=Linux).
When you search, make sure you choose the "All Issues" option, since your bug
might have already been fixed, but the default search only looks for open
issues. If you can't find a related bug, please create a
[New Issue](https://crbug.com/new). Use the linux defect template.
## Contributing code
See [Contributing code](https://dev.chromium.org/developers/contributing-code).
## Debugging
See [Linux debugging](linux_debugging.md).
## Documents
[Linux Graphics Pipeline](linux_graphics_pipeline.md)