Chromium Code Reviews| Index: build/android/devil/env/__init__.py |
| diff --git a/build/android/devil/env/__init__.py b/build/android/devil/env/__init__.py |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..1bd3c716d04428c70fc15c9f37ecb11bfa4dc7af |
| --- /dev/null |
| +++ b/build/android/devil/env/__init__.py |
| @@ -0,0 +1,17 @@ |
| +# 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. |
| + |
| +import logging |
| +import os |
| + |
| +from devil import base_error |
| +from devil.env import android_sdk_config |
| +from devil.env import binary_config |
| +from devil.env import dependency_config |
| + |
| + |
|
perezju
2015/09/10 09:45:48
Maybe add some comments here explaining how/where
jbudorick
2015/09/12 02:31:04
obsolete
|
| +android_sdk = android_sdk_config.AndroidSdkConfig.default() |
| +binaries = binary_config.BinaryConfig.default() |
| +dependencies = dependency_config.DependencyConfig.default() |
| + |