blob: 26f293c4baa11d945bbf8fff34fa8c3dbc2a9678 [file] [log] [blame] [view]
David Dorwinfe186dd2022-05-20 18:35:131# Fuchsia
2
3Documentation for developing Chromium for the [Fuchsia](https://fuchsia.dev/) platform.
4
5[TOC]
6
7## Contact information
8
9* [`#fuchsia`](https://chromium.slack.com/archives/CGJCHA1SM) on [Chromium Slack](https://www.chromium.org/developers/slack)
10* [fuchsia-dev@chromium.org](mailto:fuchsia-dev@chromium.org)
11
12## Bugs
13
14Fuchsia-specific issues should have Component `Fuchsia` and OS `Fuchsia`.
15
16To report a new issue, use this
17[template](https://bugs.chromium.org/p/chromium/issues/entry?components=Fuchsia&labels=OS-Fuchsia%2CType-Bug).
18
19## Chromium development for Fuchsia
20
21See [Checking out and building on Fuchsia](build_instructions.md) for
22Fuchsia-specific build instructions.
23
24### Deploying and running Fuchsia code.
25
26Fuchsia binaries are deployed and executed via scripts that are automatically
27generated by the `fuchsia_package_installer()` or
28`fuchsia_run_script_with_packages()` GN templates.
29
30For information on running tests, see [Tests](#tests).
31
32#### Debugging
33
34See [Debugging](debug_instructions.md)
35
36#### Tests
37
38* [Deploying and running gtests on Fuchsia](gtests.md)
39* [Deploying content_shell and running web_tests on Fuchsia](web_tests.md)
40* [Running GPU integration tests on Fuchsia](gpu_testing.md)
41* [Running Telemetry Benchmarks on Fuchsia](telemetry.md)
Rohan Pavone5916e2f2022-06-07 21:17:2142* [Fuchsia Binary Size Bot](../speed/binary_size/fuchsia_binary_size_trybot.md)
David Dorwinfe186dd2022-05-20 18:35:1343
44## Fuchsia WebEngine and Runners
David Dorwin7adc701c2022-05-27 16:45:1645See [Fuchsia WebEngine and Runners](../../fuchsia_web/README.md).
David Dorwinfe186dd2022-05-20 18:35:1346
47## Resources for developers working on Chromium for Fuchsia
48
49* [Fuchsia platform versioning](platform_versioning.md)
Rohan Pavone5916e2f2022-06-07 21:17:2150* [Manually updating Chromium to a new Fuchsia SDK](sdk_updates.md)