// Copyright 2018 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 '../base/context.dart'; import '../base/platform.dart'; import '../doctor.dart'; import '../features.dart'; /// The [WindowsWorkflow] instance. LinuxWorkflow get linuxWorkflow => context.get(); /// The windows-specific implementation of a [Workflow]. /// /// This workflow requires the flutter-desktop-embedding as a sibling /// repository to the flutter repo. class LinuxWorkflow implements Workflow { const LinuxWorkflow(); @override bool get appliesToHostPlatform => platform.isLinux && featureFlags.isLinuxEnabled; @override bool get canLaunchDevices => platform.isLinux && featureFlags.isLinuxEnabled; @override bool get canListDevices => platform.isLinux && featureFlags.isLinuxEnabled; @override bool get canListEmulators => false; }