summaryrefslogtreecommitdiffstats
path: root/chromium/tools/cr/cr/base/linux.py
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/tools/cr/cr/base/linux.py')
-rw-r--r--chromium/tools/cr/cr/base/linux.py44
1 files changed, 0 insertions, 44 deletions
diff --git a/chromium/tools/cr/cr/base/linux.py b/chromium/tools/cr/cr/base/linux.py
deleted file mode 100644
index 407c48efe3f..00000000000
--- a/chromium/tools/cr/cr/base/linux.py
+++ /dev/null
@@ -1,44 +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.
-
-"""The linux specific host and platform implementation module."""
-
-import os
-
-import cr
-
-
-class LinuxHost(cr.Host):
- """The implementation of Host for linux."""
-
- ACTIVE = cr.Config.From(
- GOOGLE_CODE='/usr/local/google/code',
- )
-
- def __init__(self):
- super(LinuxHost, self).__init__()
-
- def Matches(self):
- return cr.Platform.System() == 'Linux'
-
-
-class LinuxPlatform(cr.Platform):
- """The implementation of Platform for the linux target."""
-
- ACTIVE = cr.Config.From(
- CR_BINARY=os.path.join('{CR_BUILD_DIR}', '{CR_BUILD_TARGET}'),
- CHROME_DEVEL_SANDBOX='/usr/local/sbin/chrome-devel-sandbox',
- )
-
- @property
- def enabled(self):
- return cr.Platform.System() == 'Linux'
-
- @property
- def priority(self):
- return 2
-
- @property
- def paths(self):
- return ['{GOMA_DIR}']