mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
This auto-formats all *.dart files in the repository outside of the `engine` subdirectory and enforces that these files stay formatted with a presubmit check. **Reviewers:** Please carefully review all the commits except for the one titled "formatted". The "formatted" commit was auto-generated by running `dev/tools/format.sh -a -f`. The other commits were hand-crafted to prepare the repo for the formatting change. I recommend reviewing the commits one-by-one via the "Commits" tab and avoiding Github's "Files changed" tab as it will likely slow down your browser because of the size of this PR. --------- Co-authored-by: Kate Lovett <katelovett@google.com> Co-authored-by: LongCatIsLooong <31859944+LongCatIsLooong@users.noreply.github.com>
61 lines
2.0 KiB
Dart
61 lines
2.0 KiB
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:convert/convert.dart';
|
|
import 'package:crypto/crypto.dart';
|
|
|
|
import 'base/config.dart';
|
|
import 'base/file_system.dart';
|
|
import 'build_info.dart';
|
|
import 'convert.dart';
|
|
import 'globals.dart' as globals;
|
|
|
|
String get defaultMainPath => globals.fs.path.join('lib', 'main.dart');
|
|
const String defaultManifestPath = 'pubspec.yaml';
|
|
String get defaultDepfilePath => globals.fs.path.join(getBuildDirectory(), 'snapshot_blob.bin.d');
|
|
|
|
String getDefaultApplicationKernelPath({required bool trackWidgetCreation}) {
|
|
return getKernelPathForTransformerOptions(
|
|
globals.fs.path.join(getBuildDirectory(), 'app.dill'),
|
|
trackWidgetCreation: trackWidgetCreation,
|
|
);
|
|
}
|
|
|
|
String getDefaultCachedKernelPath({
|
|
required bool trackWidgetCreation,
|
|
required List<String> dartDefines,
|
|
List<String> extraFrontEndOptions = const <String>[],
|
|
FileSystem? fileSystem,
|
|
Config? config,
|
|
}) {
|
|
final StringBuffer buffer = StringBuffer();
|
|
final List<String> cacheFrontEndOptions =
|
|
extraFrontEndOptions.toList()
|
|
..removeWhere((String arg) => arg.startsWith('--enable-experiment='));
|
|
buffer.writeAll(dartDefines);
|
|
buffer.writeAll(cacheFrontEndOptions);
|
|
String buildPrefix = '';
|
|
if (buffer.isNotEmpty) {
|
|
final String output = buffer.toString();
|
|
final Digest digest = md5.convert(utf8.encode(output));
|
|
buildPrefix = '${hex.encode(digest.bytes)}.';
|
|
}
|
|
return getKernelPathForTransformerOptions(
|
|
(fileSystem ?? globals.fs).path.join(
|
|
getBuildDirectory(config ?? globals.config, fileSystem ?? globals.fs),
|
|
'${buildPrefix}cache.dill',
|
|
),
|
|
trackWidgetCreation: trackWidgetCreation,
|
|
);
|
|
}
|
|
|
|
String getKernelPathForTransformerOptions(String path, {required bool trackWidgetCreation}) {
|
|
if (trackWidgetCreation) {
|
|
path += '.track.dill';
|
|
}
|
|
return path;
|
|
}
|
|
|
|
const String defaultPrivateKeyPath = 'privatekey.der';
|