forked from flutter/engine
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Engine build configuration for web engine. (flutter#27971)
This is part of the implementation of build/test separation. Bug: flutter/flutter#81855
- Loading branch information
1 parent
6f36d7b
commit 5541f1d
Showing
1 changed file
with
100 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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": [] | ||
} | ||
] |