8000 [fuchsia] Fix snapshot BUILD.gn file for Fuchsia roll (#8024) · flutter/engine@48bf480 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 48bf480

Browse files
authored
[fuchsia] Fix snapshot BUILD.gn file for Fuchsia roll (#8024)
1 parent 4f54a1d commit 48bf480

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

lib/snapshot/BUILD.gn

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -211,9 +211,13 @@ bin_to_linkable("isolate_snapshot_instructions_linkable") {
211211

212212
bin_to_linkable("platform_strong_dill_linkable") {
213213
deps = [
214-
":strong_platform",
214+
":kernel_platform_files",
215215
]
216-
input = "$root_out_dir/flutter_patched_sdk/platform_strong.dill"
216+
if (is_fuchsia || is_fuchsia_host) {
217+
input = "$root_out_dir/flutter_runner_patched_sdk/platform_strong.dill"
218+
} else {
219+
input = "$root_out_dir/flutter_patched_sdk/platform_strong.dill"
220+
}
217221
symbol = "kPlatformStrongDill"
218222
size_symbol = "kPlatformStrongDillSize"
219223
executable = false

0 commit comments

Comments
 (0)
0