mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00

Rolls the packages from https://github.com/dart-lang/native in the native assets implementation. Most notable we're refactoring `package:native_assets_cli` for `build.dart` use. Therefore, all imports to that package for Flutter/Dart should be to the implementation internals that are no longer visible for `build.dart` writers. Hence all the import updates. No behavior in Flutter apps should change. This PR also updates the template to use the latests version of `package:native_assets_cli` which no longer exposes all the implementation details.
93 lines
2.5 KiB
Dart
93 lines
2.5 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:native_assets_cli/native_assets_cli_internal.dart'
|
|
hide BuildMode;
|
|
|
|
import '../base/file_system.dart';
|
|
import '../build_info.dart';
|
|
import '../globals.dart' as globals;
|
|
import '../native_assets.dart';
|
|
import 'visual_studio.dart';
|
|
|
|
/// Dry run the native builds.
|
|
///
|
|
/// This does not build native assets, it only simulates what the final paths
|
|
/// of all assets will be so that this can be embedded in the kernel file.
|
|
Future<Uri?> dryRunNativeAssetsWindows({
|
|
required NativeAssetsBuildRunner buildRunner,
|
|
required Uri projectUri,
|
|
bool flutterTester = false,
|
|
required FileSystem fileSystem,
|
|
}) {
|
|
return dryRunNativeAssetsSingleArchitecture(
|
|
buildRunner: buildRunner,
|
|
projectUri: projectUri,
|
|
flutterTester: flutterTester,
|
|
fileSystem: fileSystem,
|
|
os: OS.windows,
|
|
);
|
|
}
|
|
|
|
Future<Iterable<Asset>> dryRunNativeAssetsWindowsInternal(
|
|
FileSystem fileSystem,
|
|
Uri projectUri,
|
|
bool flutterTester,
|
|
NativeAssetsBuildRunner buildRunner,
|
|
) {
|
|
return dryRunNativeAssetsSingleArchitectureInternal(
|
|
fileSystem,
|
|
projectUri,
|
|
flutterTester,
|
|
buildRunner,
|
|
OS.windows,
|
|
);
|
|
}
|
|
|
|
Future<(Uri? nativeAssetsYaml, List<Uri> dependencies)>
|
|
buildNativeAssetsWindows({
|
|
required NativeAssetsBuildRunner buildRunner,
|
|
TargetPlatform? targetPlatform,
|
|
required Uri projectUri,
|
|
required BuildMode buildMode,
|
|
bool flutterTester = false,
|
|
Uri? yamlParentDirectory,
|
|
required FileSystem fileSystem,
|
|
}) {
|
|
return buildNativeAssetsSingleArchitecture(
|
|
buildRunner: buildRunner,
|
|
targetPlatform: targetPlatform,
|
|
projectUri: projectUri,
|
|
buildMode: buildMode,
|
|
flutterTester: flutterTester,
|
|
yamlParentDirectory: yamlParentDirectory,
|
|
fileSystem: fileSystem,
|
|
);
|
|
}
|
|
|
|
|
|
Future<CCompilerConfig> cCompilerConfigWindows() async {
|
|
final VisualStudio visualStudio = VisualStudio(
|
|
fileSystem: globals.fs,
|
|
platform: globals.platform,
|
|
logger: globals.logger,
|
|
processManager: globals.processManager,
|
|
);
|
|
|
|
return CCompilerConfig(
|
|
cc: _toOptionalFileUri(visualStudio.clPath),
|
|
ld: _toOptionalFileUri(visualStudio.linkPath),
|
|
ar: _toOptionalFileUri(visualStudio.libPath),
|
|
envScript: _toOptionalFileUri(visualStudio.vcvarsPath),
|
|
envScriptArgs: <String>[],
|
|
);
|
|
}
|
|
|
|
Uri? _toOptionalFileUri(String? string) {
|
|
if (string == null) {
|
|
return null;
|
|
}
|
|
return Uri.file(string);
|
|
}
|