Windows unopt configuration. (flutter/engine#41785)

This PR also add a standalone folder to the build configurations folder. This is to separate configurations that require orchestrators from the ones the do not require them.

Bug: https://github.com/flutter/flutter/issues/126120

[C++, Objective-C, Java style guides]: https://github.com/flutter/engine/blob/main/CONTRIBUTING.md#style
This commit is contained in:
godofredoc 2023-05-08 09:42:17 -07:00 committed by GitHub
parent 12172ca91d
commit a71dc62a37
2 changed files with 46 additions and 0 deletions

View File

@ -517,6 +517,13 @@ targets:
release_build: "true"
config_name: windows_arm_host_engine
- name: Windows windows_unopt
bringup: true
recipe: engine_v2/builder
timeout: 60
properties:
config_name: windows_unopt
- name: Windows Unopt
recipe: engine/engine_unopt
properties:

View File

@ -0,0 +1,39 @@
{
"drone_dimensions": [
"device_type=none",
"os=Windows-10"
],
"gclient_variables": {
"download_android_deps": false
},
"dependencies": [
{
"dependency": "certs",
"version": "version:9563bb"
}
],
"gn": [
"--runtime-mode",
"debug",
"--unoptimized",
"--prebuilt-dart-sdk"
],
"name": "host_debug_unopt",
"ninja": {
"config": "host_debug_unopt"
},
"tests": [
{
"language": "python3",
"name": "test: Host Tests for host_debug_unopt",
"parameters": [
"--variant",
"host_debug_unopt",
"--type",
"engine",
"--engine-capture-core-dump"
],
"script": "flutter/testing/run_tests.py"
}
]
}