Skip to content

Commit

Permalink
Add configuration for windows android aot. (flutter#27877)
Browse files Browse the repository at this point in the history
This is a configuration required to separate builds from tests in the
engine repo.

Bug: flutter/flutter#81855
  • Loading branch information
godofredoc authored Aug 4, 2021
1 parent ddec16d commit f7f57a7
Showing 1 changed file with 102 additions and 0 deletions.
102 changes: 102 additions & 0 deletions ci/builders/windows_android_aot_engine.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,102 @@
[
{
"archives": [],
"drone_dimensions": [],
"gn": [
"--runtime-mode",
"profile",
"--android"
],
"name": "android_profile",
"ninja": {
"config": "android_profile",
"targets": [
"gen_snapshot"
]
}
},
{
"archives": [],
"drone_dimensions": [],
"gn": [
"--runtime-mode",
"profile",
"--android",
"--android-cpu=arm64"
],
"name": "android_profile_arm64",
"ninja": {
"config": "android_profile_arm64",
"targets": [
"gen_snapshot"
]
}
},
{
"archives": [],
"drone_dimensions": [],
"gn": [
"--runtime-mode",
"profile",
"--android",
"--android-cpu=x64"
],
"name": "android_profile_x64",
"ninja": {
"config": "android_profile_x64",
"targets": [
"gen_snapshot"
]
}
},
{
"archives": [],
"drone_dimensions": [],
"gn": [
"--runtime-mode",
"release",
"--android"
],
"name": "android_release",
"ninja": {
"config": "android_release",
"targets": [
"gen_snapshot"
]
}
},
{
"archives": [],
"drone_dimensions": [],
"gn": [
"--runtime-mode",
"release",
"--android",
"--android-cpu=arm64"
],
"name": "android_release_arm64",
"ninja": {
"config": "android_release_arm64",
"targets": [
"gen_snapshot"
]
}
},
{
"archives": [],
"drone_dimensions": [],
"gn": [
"--runtime-mode",
"release",
"--android",
"--android-cpu=x64"
],
"name": "android_release_x64",
"ninja": {
"config": "android_release_x64",
"targets": [
"gen_snapshot"
]
}
}
]

0 comments on commit f7f57a7

Please sign in to comment.