mirror of
https://github.com/flutter/flutter
synced 2024-11-05 18:37:51 +00:00
1b887c72b5
This enables benchmarks for the Skwasm renderer, compiled with dart2wasm. Platform views aren't supported in Skwasm yet, so we are skipping those benchmarks for now.
16 lines
496 B
Dart
16 lines
496 B
Dart
// Copyright 2014 The Flutter Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
import 'package:flutter_devicelab/framework/framework.dart';
|
|
import 'package:flutter_devicelab/tasks/web_benchmarks.dart';
|
|
|
|
/// Runs all Web benchmarks using the HTML rendering backend.
|
|
Future<void> main() async {
|
|
await task(() async {
|
|
return runWebBenchmark((
|
|
webRenderer: 'html',
|
|
useWasm: false
|
|
));
|
|
});
|
|
}
|