File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed
benchmarks/SDKArtifactSizes/dart Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -62,11 +62,15 @@ void main() {
6262 reportFileSize (executablePath, executable);
6363 }
6464
65- for (final lib in libs) {
66- final libPath = '$rootDir /dart-sdk/lib/_internal/$lib ' ;
67- reportFileSize (libPath, lib);
65+ void reportLib (String lib, String name) {
66+ reportFileSize ('$rootDir /dart-sdk/lib/_internal/$lib ' , name);
6867 }
6968
69+ // Continue reporting the file size under the old name for continuity of
70+ // benchmarking data.
71+ reportLib ('vm_platform.dill' , 'vm_platform_strong.dill' );
72+ reportLib ('vm_platform_product.dill' , 'vm_platform_strong_product.dill' );
73+
7074 for (final snapshot in snapshots) {
7175 final snapshotPath =
7276 '$rootDir /dart-sdk/bin/snapshots/$snapshot .dart.snapshot' ;
You can’t perform that action at this time.
0 commit comments