// Copyright 2019 The Chromium 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 '../../artifacts.dart'; import '../../base/file_system.dart'; import '../../build_info.dart'; import '../../globals.dart'; import '../build_system.dart'; /// Copies the Windows desktop embedding files to the copy directory. class UnpackWindows extends Target { const UnpackWindows(); @override String get name => 'unpack_windows'; @override List<Source> get inputs => const <Source>[ Source.pattern('{FLUTTER_ROOT}/packages/flutter_tools/lib/src/build_system/targets/windows.dart'), Source.artifact(Artifact.windowsDesktopPath, mode: BuildMode.debug), ]; @override List<Source> get outputs => const <Source>[ Source.pattern('{PROJECT_DIR}/windows/flutter/flutter_windows_glfw.dll'), Source.pattern('{PROJECT_DIR}/windows/flutter/flutter_windows_glfw.dll.exp'), Source.pattern('{PROJECT_DIR}/windows/flutter/flutter_windows_glfw.dll.lib'), Source.pattern('{PROJECT_DIR}/windows/flutter/flutter_windows_glfw.dll.pdb'), Source.pattern('{PROJECT_DIR}/windows/flutter/flutter_export.h'), Source.pattern('{PROJECT_DIR}/windows/flutter/flutter_messenger.h'), Source.pattern('{PROJECT_DIR}/windows/flutter/flutter_plugin_registrar.h'), Source.pattern('{PROJECT_DIR}/windows/flutter/flutter_glfw.h'), Source.pattern('{PROJECT_DIR}/windows/flutter/icudtl.dat'), Source.pattern('{PROJECT_DIR}/windows/flutter/cpp_client_wrapper_glfw/*'), ]; @override List<Target> get dependencies => const <Target>[]; @override Future<void> build(List<File> inputFiles, Environment environment) async { // This path needs to match the prefix in the rule below. final String basePath = artifacts.getArtifactPath(Artifact.windowsDesktopPath); for (File input in inputFiles) { if (fs.path.basename(input.path) == 'windows.dart') { continue; } final String outputPath = fs.path.join( environment.projectDir.path, 'windows', 'flutter', fs.path.relative(input.path, from: basePath), ); final File destinationFile = fs.file(outputPath); if (!destinationFile.parent.existsSync()) { destinationFile.parent.createSync(recursive: true); } fs.file(input).copySync(destinationFile.path); } } }