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

Add a temporary target to help with the migration to gn artifacts. #34049

Merged
merged 1 commit into from
Jun 15, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ci/builders/linux_android_debug_engine.json
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
"include_paths": [
"out/android_debug/zip_archives/android-arm/symbols.zip",
"out/android_debug/zip_archives/flutter_download_io",
"out/android_debug/zip_archives/android-arm/sky_engine.zip",
"out/android_debug/zip_archives/sky_engine.zip",
"out/android_debug/zip_archives/android-javadoc.zip"
]
}
Expand All @@ -106,7 +106,7 @@
"config": "android_debug",
"targets": [
"flutter",
"flutter/sky/dist:zip",
"flutter/sky/dist:zip_old_location",
"flutter/shell/platform/android:embedding_jars",
"flutter/shell/platform/android:abi_jars",
"flutter/shell/platform/android:robolectric_tests"
Expand Down
13 changes: 13 additions & 0 deletions sky/dist/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,19 @@ if (is_android) {
]
deps = [ ":sky_engine" ]
}

zip_bundle("zip_old_location") {
# TODO godofredoc: remove after we migrate the tool to use the new location.
# Bug: https://github.com/flutter/flutter/issues/105351
output = "sky_engine.zip"
files = [
{
source = "$root_build_dir/dist/packages/sky_engine"
destination = "sky_engine"
},
]
deps = [ ":sky_engine" ]
}
}

group("dist") {
Expand Down