summaryrefslogtreecommitdiffstats
path: root/chromium/tools/cr/cr/actions/linux.py
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/tools/cr/cr/actions/linux.py')
-rw-r--r--chromium/tools/cr/cr/actions/linux.py50
1 files changed, 0 insertions, 50 deletions
diff --git a/chromium/tools/cr/cr/actions/linux.py b/chromium/tools/cr/cr/actions/linux.py
deleted file mode 100644
index adcdb31abd6..00000000000
--- a/chromium/tools/cr/cr/actions/linux.py
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 2013 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.
-
-"""A module to hold linux specific action implementations."""
-
-import cr
-
-
-class LinuxRunner(cr.Runner):
- """An implementation of cr.Runner for the linux platform.
-
- This supports directly executing the binaries from the output directory.
- """
-
- @property
- def enabled(self):
- return cr.LinuxPlatform.GetInstance().is_active
-
- def Kill(self, context, targets, arguments):
- # TODO(iancottrell): Think about how to implement this, or even if we should
- print '**WARNING** Kill not yet implemented on linux'
-
- def Run(self, context, target, arguments):
- cr.Host.Execute(target, '{CR_BINARY}', '{CR_RUN_ARGUMENTS}', *arguments)
-
- def Test(self, context, target, arguments):
- self.Run(context, target, arguments)
-
-
-class LinuxInstaller(cr.Installer):
- """An implementation of cr.Installer for the linux platform.
-
- This does nothing, the linux runner works from the output directory, there
- is no need to install anywhere.
- """
-
- @property
- def enabled(self):
- return cr.LinuxPlatform.GetInstance().is_active
-
- def Uninstall(self, context, targets, arguments):
- pass
-
- def Install(self, context, targets, arguments):
- pass
-
- def Reinstall(self, context, targets, arguments):
- pass
-