summaryrefslogtreecommitdiffstats
path: root/tools/python/google/platform_utils.py
diff options
context:
space:
mode:
authortony@chromium.org <tony@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-08-25 18:22:41 +0000
committertony@chromium.org <tony@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-08-25 18:22:41 +0000
commit89845e2e9a1052a1bb3f3f3f42abfe07ee1a8ae0 (patch)
treebc1070a4e5f5b0d5ea17803f8208b6862da90005 /tools/python/google/platform_utils.py
parentae80a219585bce60b3f7438b69dfd570d00d47d8 (diff)
downloadchromium_src-89845e2e9a1052a1bb3f3f3f42abfe07ee1a8ae0.zip
chromium_src-89845e2e9a1052a1bb3f3f3f42abfe07ee1a8ae0.tar.gz
chromium_src-89845e2e9a1052a1bb3f3f3f42abfe07ee1a8ae0.tar.bz2
Step 1 in porting page cycler http to linux. Add http startup to
the the platform utils. BUG=15470 Review URL: http://codereview.chromium.org/174378 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24254 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/python/google/platform_utils.py')
-rw-r--r--tools/python/google/platform_utils.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/python/google/platform_utils.py b/tools/python/google/platform_utils.py
index 5bbcdf8..b2caa0f 100644
--- a/tools/python/google/platform_utils.py
+++ b/tools/python/google/platform_utils.py
@@ -20,5 +20,5 @@ if sys.platform in ('cygwin', 'win32'):
from platform_utils_win import *
elif sys.platform == 'darwin':
from platform_utils_mac import *
-
-
+elif sys.platform == 'linux2':
+ from platform_utils_linux import *