blob: 9b46261b3bb4a4d2d809f2a86e0c1665a638d28b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# Copyright (c) 2011 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.
"""Imports a set of drivers appropriate to the current OS."""
import sys
platform_dir = sys.platform
keyboard = __import__(platform_dir+".keyboard", globals(), locals(), [''])
mouse = __import__(platform_dir+".mouse", globals(), locals(), [''])
windowing = __import__(platform_dir+".windowing", globals(), locals(), [''])
|