blob: 8213a057c2948600376c9249b30e5d4706e72660 [file] [log] [blame]
Hsinyu Chao1244cd82012-05-09 18:14:22 +08001# Copyright (c) 2012 The Chromium OS 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
5import os, sys
6
7dirname = os.path.dirname(sys.modules[__name__].__file__)
Alex Miller9e30bb22013-01-01 14:46:53 -08008client_dir = os.path.abspath(os.path.join(dirname, "..", ".."))
Hsinyu Chao1244cd82012-05-09 18:14:22 +08009sys.path.insert(0, client_dir)
10
11import setup_modules
12
13sys.path.pop(0)
14setup_modules.setup(base_path=client_dir,
15 root_module_name="autotest_lib.client")