mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00
56 lines
1.8 KiB
Dart
56 lines
1.8 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 'dart:async';
|
|
|
|
import '../commands/build_linux.dart';
|
|
import '../commands/build_macos.dart';
|
|
import '../commands/build_windows.dart';
|
|
import '../globals.dart' as globals;
|
|
import '../runner/flutter_command.dart';
|
|
import 'build_aar.dart';
|
|
import 'build_aot.dart';
|
|
import 'build_apk.dart';
|
|
import 'build_appbundle.dart';
|
|
import 'build_bundle.dart';
|
|
import 'build_fuchsia.dart';
|
|
import 'build_ios.dart';
|
|
import 'build_ios_framework.dart';
|
|
import 'build_web.dart';
|
|
|
|
class BuildCommand extends FlutterCommand {
|
|
BuildCommand({ bool verboseHelp = false }) {
|
|
addSubcommand(BuildAarCommand(verboseHelp: verboseHelp));
|
|
addSubcommand(BuildApkCommand(verboseHelp: verboseHelp));
|
|
addSubcommand(BuildAppBundleCommand(verboseHelp: verboseHelp));
|
|
addSubcommand(BuildAotCommand());
|
|
addSubcommand(BuildIOSCommand(verboseHelp: verboseHelp));
|
|
addSubcommand(BuildIOSFrameworkCommand(
|
|
buildSystem: globals.buildSystem,
|
|
verboseHelp: verboseHelp,
|
|
));
|
|
addSubcommand(BuildBundleCommand(verboseHelp: verboseHelp));
|
|
addSubcommand(BuildWebCommand(verboseHelp: verboseHelp));
|
|
addSubcommand(BuildMacosCommand(verboseHelp: verboseHelp));
|
|
addSubcommand(BuildLinuxCommand(verboseHelp: verboseHelp));
|
|
addSubcommand(BuildWindowsCommand(verboseHelp: verboseHelp));
|
|
addSubcommand(BuildFuchsiaCommand(verboseHelp: verboseHelp));
|
|
}
|
|
|
|
@override
|
|
final String name = 'build';
|
|
|
|
@override
|
|
final String description = 'Flutter build commands.';
|
|
|
|
@override
|
|
Future<FlutterCommandResult> runCommand() async => null;
|
|
}
|
|
|
|
abstract class BuildSubCommand extends FlutterCommand {
|
|
BuildSubCommand() {
|
|
requiresPubspecYaml();
|
|
}
|
|
}
|