Chromium Code Reviews| Index: build/android/gyp/get_device_configuration.py |
| diff --git a/build/android/gyp/get_device_configuration.py b/build/android/gyp/get_device_configuration.py |
| index f27c12be4b360acd2882607d64823e987c105ddc..0a4893c2af7dd3afb0c2f637cff5f25c47c07683 100755 |
| --- a/build/android/gyp/get_device_configuration.py |
| +++ b/build/android/gyp/get_device_configuration.py |
| @@ -10,19 +10,13 @@ This configuration is used by later build steps to determine which devices to |
| install to and what needs to be installed to those devices. |
| """ |
| -import logging |
| import optparse |
| -import os |
| -import subprocess |
| import sys |
| +# pylint: disable=F0401 |
| from util import build_utils |
| from util import build_device |
| - |
| -BUILD_ANDROID_DIR = os.path.join(os.path.dirname(__file__), '..') |
| -sys.path.append(BUILD_ANDROID_DIR) |
|
cjhopman
2014/03/12 17:43:10
Removing this is wrong.
jbudorick
2014/03/12 18:24:42
Even though, after removing the unused import belo
cjhopman
2014/03/12 19:34:12
You've convinced me. Removing this is right.
|
| - |
| -from pylib.utils import apk_helper |
| +# pylint: disable=F0401 |
| def main(argv): |