File tree 3 files changed +42
-0
lines changed
3 files changed +42
-0
lines changed Original file line number Diff line number Diff line change @@ -1854,6 +1854,24 @@ targets:
1854
1854
["devicelab"]
1855
1855
scheduler : luci
1856
1856
1857
+ - name : Mac_ios flutter_gallery_ios_sksl_warmup__transition_perf
1858
+ builder : Mac_ios flutter_gallery_ios_sksl_warmup__transition_perf
1859
+ bringup : true
1860
+ presubmit : false
1861
+ properties :
1862
+ tags : >
1863
+ ["devicelab"]
1864
+ scheduler : luci
1865
+
1866
+ - name : Mac_ios cubic_bezier_perf_ios_sksl_warmup__timeline_summary
1867
+ builder : Mac_ios cubic_bezier_perf_ios_sksl_warmup__timeline_summary
1868
+ bringup : true
1869
+ presubmit : false
1870
+ properties :
1871
+ tags : >
1872
+ ["devicelab"]
1873
+ scheduler : luci
1874
+
1857
1875
- name : Mac_ios flutter_view_ios__start_up
1858
1876
builder : Mac_ios flutter_view_ios__start_up
1859
1877
presubmit : false
Original file line number Diff line number Diff line change
1
+ // Copyright 2014 The Flutter Authors. All rights reserved.
2
+ // Use of this source code is governed by a BSD-style license that can be
3
+ // found in the LICENSE file.
4
+
5
+ import 'package:flutter_devicelab/framework/devices.dart' ;
6
+ import 'package:flutter_devicelab/framework/framework.dart' ;
7
+ import 'package:flutter_devicelab/tasks/perf_tests.dart' ;
8
+
9
+ Future <void > main () async {
10
+ deviceOperatingSystem = DeviceOperatingSystem .ios;
11
+ await task (createCubicBezierPerfSkSLWarmupTest ());
12
+ }
Original file line number Diff line number Diff line change
1
+ // Copyright 2014 The Flutter Authors. All rights reserved.
2
+ // Use of this source code is governed by a BSD-style license that can be
3
+ // found in the LICENSE file.
4
+
5
+ import 'package:flutter_devicelab/framework/devices.dart' ;
6
+ import 'package:flutter_devicelab/framework/framework.dart' ;
7
+ import 'package:flutter_devicelab/tasks/perf_tests.dart' ;
8
+
9
+ Future <void > main () async {
10
+ deviceOperatingSystem = DeviceOperatingSystem .ios;
11
+ await task (createFlutterGalleryTransitionsPerfSkSLWarmupTest ());
12
+ }
You can’t perform that action at this time.
0 commit comments