Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 82ee3d4

Browse files
authored
Fix broken links in docs/ (#54815)
Fixes some links that were broken as a part of #53595, because it was pointed out on discord Specifically, replaces `../../` with `https://github.com/flutter/flutter/blob/master/docs/` in the places that `grep` surfaced it. [C++, Objective-C, Java style guides]: https://github.com/flutter/engine/blob/main/CONTRIBUTING.md#style
1 parent 5a9de11 commit 82ee3d4

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

docs/contributing/Compiling-the-engine.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Run the following steps, from the `src` directory created in [Setting up the Eng
6060
> 💡 **TIP**: When developing on a Mac with ARM (M CPU), prefer `host_debug_unopt_arm64`.
6161
>
6262
> You can continue to use `host_debug_unopt` (required for Intel Macs), but the engine will be run under Rosetta
63-
> which may be slower. See [Developing with Flutter on Apple Silicon](../../platforms/desktop/macos/Developing-with-Flutter-on-Apple-Silicon.md)
63+
> which may be slower. See [Developing with Flutter on Apple Silicon](https://github.com/flutter/flutter/blob/master/docs/platforms/desktop/macos/Developing-with-Flutter-on-Apple-Silicon.md)
6464
> for more information.
6565
6666
4. Build your executables
@@ -80,11 +80,11 @@ If you're going to be debugging crashes in the engine, make sure you add
8080
`android/AndroidManifest.xml` file for the Flutter app you are using
8181
to test the engine.
8282

83-
See [The flutter tool](../../tool/README.md) for instructions on how to use the `flutter` tool with a local engine.
83+
See [The flutter tool](https://github.com/flutter/flutter/blob/master/docs/tool/README.md) for instructions on how to use the `flutter` tool with a local engine.
8484
You will typically use the `android_debug_unopt` build to debug the engine on a device, and
8585
`android_debug_unopt_x64` to debug in on a simulator. Modifying dart sources in the engine will
8686
require adding a `dependency_override` section in you app's `pubspec.yaml` as detailed
87-
[here](../../tool/README.md#using-a-locally-built-engine-with-the-flutter-tool).
87+
[here](https://github.com/flutter/flutter/blob/master/docs/tool/README.md#using-a-locally-built-engine-with-the-flutter-tool).
8888

8989
Note that if you use particular android or ios engine build, you will need to have corresponding
9090
host build available next to it: if you use `android_debug_unopt`, you should have built `host_debug_unopt`,
@@ -133,11 +133,11 @@ Run the following steps, from the `src` directory created in the steps above:
133133

134134
5. `ninja -C out/ios_debug_unopt && ninja -C out/host_debug_unopt` to build all artifacts (use `out/ios_debug_sim_unopt` for Simulator).
135135

136-
See [The flutter tool](../../tool/README.md) for instructions on how to use the `flutter` tool with a local engine.
136+
See [The flutter tool](https://github.com/flutter/flutter/blob/master/docs/tool/README.md) for instructions on how to use the `flutter` tool with a local engine.
137137
You will typically use the `ios_debug_unopt` build to debug the engine on a device, and
138138
`ios_debug_sim_unopt` to debug in on a simulator. Modifying dart sources in the engine will
139139
require adding a `dependency_override` section in you app's `pubspec.yaml` as detailed
140-
[here](../../tool/README.md#using-a-locally-built-engine-with-the-flutter-tool).
140+
[here](https://github.com/flutter/flutter/blob/master/docs/tool/README.md#using-a-locally-built-engine-with-the-flutter-tool).
141141

142142
See also [instructions for debugging the engine in a Flutter app in Xcode](../Debugging-the-engine.md#debugging-ios-builds-with-xcode).
143143

@@ -155,10 +155,10 @@ These steps build the desktop embedding, and the engine used by `flutter test` o
155155
4. `ninja -C out/host_debug_unopt` to build a desktop unoptimized binary.
156156
* If you skipped `--unoptimized`, use `ninja -C out/host_debug` instead.
157157

158-
See [The flutter tool](../../tool/README.md) for instructions on how to use the `flutter` tool with a local engine.
158+
See [The flutter tool](https://github.com/flutter/flutter/blob/master/docs/tool/README.md) for instructions on how to use the `flutter` tool with a local engine.
159159
You will typically use the `host_debug_unopt` build in this setup. Modifying dart sources in the engine will
160160
require adding a `dependency_override` section in you app's `pubspec.yaml` as detailed
161-
[here](../../tool/README.md#using-a-locally-built-engine-with-the-flutter-tool).
161+
[here](https://github.com/flutter/flutter/blob/master/docs/tool/README.md#using-a-locally-built-engine-with-the-flutter-tool).
162162

163163

164164
## Compiling for Windows

docs/contributing/Setting-up-the-Engine-development-environment.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,8 @@ gclient sync
9191
## Next steps:
9292

9393
* [Compiling the engine](Compiling-the-engine.md) explains how to actually get builds, now that you have the code.
94-
* [The flutter tool](../../tool/README.md) has a section explaining how to use custom engine builds.
95-
* [Signing commits](../../contributing/Signing-commits.md), to configure your environment to securely sign your commits.
94+
* [The flutter tool](https://github.com/flutter/flutter/blob/master/docs/tool/README.md) has a section explaining how to use custom engine builds.
95+
* [Signing commits](https://github.com/flutter/flutter/blob/master/docs/contributing/Signing-commits.md), to configure your environment to securely sign your commits.
9696

9797
## Editor autocomplete support
9898

docs/testing/Testing-the-engine.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ Xcode and hit CMD+U.
329329
Dart unit tests are executed during pre-submit on our CI system when submitting
330330
PRs to the `flutter/engine` repository.
331331

332-
_See also: [Flutter Test Fonts](../../contributing/testing/Flutter-Test-Fonts.md)_
332+
_See also: [Flutter Test Fonts](https://github.com/flutter/flutter/blob/master/docs/contributing/testing/Flutter-Test-Fonts.md)_
333333

334334
### Framework tests
335335

0 commit comments

Comments
 (0)