• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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.
4
5"""Imports a set of drivers appropriate to the current OS."""
6
7import sys
8
9platform_dir = sys.platform
10
11keyboard  = __import__(platform_dir+".keyboard",  globals(), locals(), [''])
12mouse     = __import__(platform_dir+".mouse",     globals(), locals(), [''])
13windowing = __import__(platform_dir+".windowing", globals(), locals(), [''])
14