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

Commit d7cd0d1

Browse files
committed
Add a temporary target to help with the migration to gn artifacts.
We'll save the file to the new and old locations while we transition from recipes generated artifacts to gn generated ones. Once we finish that implementation we will start standardizing artifact names and locations. Bug: flutter/flutter#105351
1 parent f8c0dc8 commit d7cd0d1

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed

ci/builders/linux_android_debug_engine.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
8787
"include_paths": [
8888
"out/android_debug/zip_archives/android-arm/symbols.zip",
8989
"out/android_debug/zip_archives/flutter_download_io",
90-
"out/android_debug/zip_archives/android-arm/sky_engine.zip",
90+
"out/android_debug/zip_archives/sky_engine.zip",
9191
"out/android_debug/zip_archives/android-javadoc.zip"
9292
]
9393
}
@@ -106,7 +106,7 @@
106106
"config": "android_debug",
107107
"targets": [
108108
"flutter",
109-
"flutter/sky/dist:zip",
109+
"flutter/sky/dist:zip_old_location",
110110
"flutter/shell/platform/android:embedding_jars",
111111
"flutter/shell/platform/android:abi_jars",
112112
"flutter/shell/platform/android:robolectric_tests"

sky/dist/BUILD.gn

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,19 @@ if (is_android) {
3737
]
3838
deps = [ ":sky_engine" ]
3939
}
40+
41+
zip_bundle("zip_old_location") {
42+
# TODO godofredoc: remove after we migrate the tool to use the new location.
43+
# Bug: https://github.com/flutter/flutter/issues/105351
44+
output = "sky_engine.zip"
45+
files = [
46+
{
47+
source = "$root_build_dir/dist/packages/sky_engine"
48+
destination = "sky_engine"
49+
},
50+
]
51+
deps = [ ":sky_engine" ]
52+
}
4053
}
4154

4255
group("dist") {

0 commit comments

Comments
 (0)