Ejemplo n.º 1
0
# Copyright 2013 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.
"""A package to hold all the actions for the cr tool.

This package holds the standard actions used by the commands in the cr tool.
These actions are the things that actually perform the work, they are generally
run in sequences by commands.
"""

import cr

cr.Import(__name__, 'action')
cr.Import(__name__, 'runner')
cr.Import(__name__, 'builder')
cr.Import(__name__, 'installer')
Ejemplo n.º 2
0
# Copyright 2013 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.
"""A package for all the built in commands.

This package has all the standard commands built in to the cr tool.
Most commands use actions to perform the real work.
"""

import cr

cr.Import(__name__, 'target')
Ejemplo n.º 3
0
# Copyright 2013 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.
"""A package for all the built in commands.

This package has all the standard commands built in to the cr tool.
Most commands use actions to perform the real work.
"""

import cr

cr.Import(__name__, 'command')
cr.Import(__name__, 'prepare')
cr.Import(__name__, 'init')
Ejemplo n.º 4
0
# Copyright 2013 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.

"""A package for the base supporting classes of the cr tool."""

import cr

cr.Import(__name__, 'platform')
cr.Import(__name__, 'buildtype')
cr.Import(__name__, 'client')