Roll src/third_party/WebKit f007c95:0171005 (svn 185074:185088)
[chromium-blink-merge.git] / tools / cr / cr / __init__.py
blob3c515753af396b766101ddb115327f5c6e7d8440
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.
5 """Chromium cr tool module.
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 """
12 import cr.loader
13 from cr.loader import Import
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')