David Dorwin | fe186dd | 2022-05-20 18:35:13 | [diff] [blame] | 1 | # Fuchsia |
| 2 | |
| 3 | Documentation 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 | |
| 14 | Fuchsia-specific issues should have Component `Fuchsia` and OS `Fuchsia`. |
| 15 | |
| 16 | To 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 | |
| 21 | See [Checking out and building on Fuchsia](build_instructions.md) for |
| 22 | Fuchsia-specific build instructions. |
| 23 | |
| 24 | ### Deploying and running Fuchsia code. |
| 25 | |
| 26 | Fuchsia binaries are deployed and executed via scripts that are automatically |
| 27 | generated by the `fuchsia_package_installer()` or |
| 28 | `fuchsia_run_script_with_packages()` GN templates. |
| 29 | |
| 30 | For information on running tests, see [Tests](#tests). |
| 31 | |
| 32 | #### Debugging |
| 33 | |
| 34 | See [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 Pavone | 5916e2f | 2022-06-07 21:17:21 | [diff] [blame] | 42 | * [Fuchsia Binary Size Bot](../speed/binary_size/fuchsia_binary_size_trybot.md) |
David Dorwin | fe186dd | 2022-05-20 18:35:13 | [diff] [blame] | 43 | |
| 44 | ## Fuchsia WebEngine and Runners |
David Dorwin | 7adc701c | 2022-05-27 16:45:16 | [diff] [blame] | 45 | See [Fuchsia WebEngine and Runners](../../fuchsia_web/README.md). |
David Dorwin | fe186dd | 2022-05-20 18:35:13 | [diff] [blame] | 46 | |
| 47 | ## Resources for developers working on Chromium for Fuchsia |
| 48 | |
| 49 | * [Fuchsia platform versioning](platform_versioning.md) |
Rohan Pavone | 5916e2f | 2022-06-07 21:17:21 | [diff] [blame] | 50 | * [Manually updating Chromium to a new Fuchsia SDK](sdk_updates.md) |