Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / tools / cr / cr / __init__.py
1 # Copyright 2013 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 """Chromium cr tool module.
6
7 This is the root module of all the cr code.
8 Commonly accessed elements, including all plugins, are promoted into this
9 module.
10 """
11
12 import cr.loader
13 from cr.loader import Import
14
15 Import(__name__, 'auto.user')
16 Import(__name__, 'autocomplete')
17 Import(__name__, 'config')
18 Import(__name__, 'plugin')
19 Import(__name__, 'base')
20 Import(__name__, 'commands')
21 Import(__name__, 'actions')