Revert "Always activate MojoApplicationHost"
[chromium-blink-merge.git] / tools / site_compare / drivers / __init__.py
blob9b46261b3bb4a4d2d809f2a86e0c1665a638d28b
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
5 """Imports a set of drivers appropriate to the current OS."""
7 import sys
9 platform_dir = sys.platform
11 keyboard = __import__(platform_dir+".keyboard", globals(), locals(), [''])
12 mouse = __import__(platform_dir+".mouse", globals(), locals(), [''])
13 windowing = __import__(platform_dir+".windowing", globals(), locals(), [''])