Skip to content

Commit

Permalink
Engine build configuration for web engine. (flutter#27971)
Browse files Browse the repository at this point in the history
This is part of the implementation of build/test separation.

Bug: flutter/flutter#81855
  • Loading branch information
godofredoc authored Aug 10, 2021
1 parent 6f36d7b commit 5541f1d
Showing 1 changed file with 100 additions and 0 deletions.
100 changes: 100 additions & 0 deletions ci/builders/web_engine.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,100 @@
[
{
"archives": [],
"drone_dimensions": [
"device_type=none",
"os=Windows-10"
],
"gn": [
"--runtime-mode",
"debug",
"--unoptimized",
"--full-dart-sdk",
"--prebuilt-dart-sdk"
],
"name": "windows_host_debug",
"ninja": {
"config": "host_debug_unopt",
"targets": []
},
"platform": "Windows",
"tests": []
},
{
"archives": [],
"drone_dimensions": [
"device_type=none",
"os=Linux"
],
"generators": {
"pub_dirs": [
"flutter/lib/web_ui/",
"flutter/web_sdk/web_engine_tester/"
],
"tasks": [
{
"name": "compile web_tests",
"parameters": [
"run",
"compile_tests"
],
"scripts": [
"out/host_debug_unopt/dart-sdk/bin/dart",
"flutter/lib/web_ui/dev/felt.dart"
]
},
{
"name": "check licenses",
"parameters": [
"check-licenses"
],
"scripts": [
"out/host_debug_unopt/dart-sdk/bin/dart",
"flutter/lib/web_ui/dev/felt.dart"
]
},
{
"name": "web engine analysis",
"parameters": [],
"scripts": [
"flutter/lib/web_ui/dev/web_engine_analysis.sh"
]
}
]
},
"gn": [
"--runtime-mode",
"debug",
"--unoptimized",
"--full-dart-sdk"
],
"name": "linux_host_debug_unopt",
"ninja": {
"config": "host_debug_unopt",
"targets": []
},
"platform": "Linux",
"tests": []
},
{
"archives": [],
"drone_dimensions": [
"device_type=none",
"os=Mac"
],
"gn": [
"--runtime-mode",
"debug",
"--unoptimized",
"--full-dart-sdk",
"--prebuilt-dart-sdk"
],
"name": "mac_host_debug_unopt",
"ninja": {
"config": "host_debug_unopt",
"targets": []
},
"platform": "Mac",
"tests": []
}
]

0 comments on commit 5541f1d

Please sign in to comment.