diff options
author | jbudorick <jbudorick@chromium.org> | 2016-01-11 13:40:19 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-01-11 21:42:00 +0000 |
commit | 6f477dbc6d58b9a7e03bf4883c02bbe8f7dc1237 (patch) | |
tree | 001f34efafc24aeb592fad911e847fe60d87eeaf /build | |
parent | 05ee7a6cddd67666acb414d98637e7ae6d565a07 (diff) | |
download | chromium_src-6f477dbc6d58b9a7e03bf4883c02bbe8f7dc1237.zip chromium_src-6f477dbc6d58b9a7e03bf4883c02bbe8f7dc1237.tar.gz chromium_src-6f477dbc6d58b9a7e03bf4883c02bbe8f7dc1237.tar.bz2 |
[Android] Convert uses of cmd_helper in tools/ to devil.
BUG=476719
Review URL: https://codereview.chromium.org/1578863002
Cr-Commit-Position: refs/heads/master@{#368675}
Diffstat (limited to 'build')
-rw-r--r-- | build/android/buildbot/bb_utils.py | 2 | ||||
-rw-r--r-- | build/android/pylib/cmd_helper.py | 8 |
2 files changed, 1 insertions, 9 deletions
diff --git a/build/android/buildbot/bb_utils.py b/build/android/buildbot/bb_utils.py index d1981f4..223f4ae 100644 --- a/build/android/buildbot/bb_utils.py +++ b/build/android/buildbot/bb_utils.py @@ -25,7 +25,7 @@ BB_BUILD_DIR = os.path.abspath( CHROME_SRC = os.path.abspath( os.path.join(os.path.dirname(__file__), '..', '..', '..')) -# TODO: Figure out how to merge this with pylib.cmd_helper.OutDirectory(). +# TODO: Figure out how to merge this with devil.utils.cmd_helper.OutDirectory(). CHROME_OUT_DIR = os.path.join(CHROME_SRC, 'out') GOMA_DIR = os.environ.get('GOMA_DIR', os.path.join(BB_BUILD_DIR, 'goma')) diff --git a/build/android/pylib/cmd_helper.py b/build/android/pylib/cmd_helper.py deleted file mode 100644 index 2d1b1b3..0000000 --- a/build/android/pylib/cmd_helper.py +++ /dev/null @@ -1,8 +0,0 @@ -# Copyright 2015 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. - -# pylint: disable=unused-wildcard-import -# pylint: disable=wildcard-import - -from devil.utils.cmd_helper import * |