OLD | NEW |
---|---|
(Empty) | |
1 # Copyright 2015 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. | |
4 | |
5 import logging | |
6 import os | |
7 | |
8 from devil import base_error | |
9 from devil.env import android_sdk_config | |
10 from devil.env import binary_config | |
11 from devil.env import dependency_config | |
12 | |
13 | |
perezju
2015/09/10 09:45:48
Maybe add some comments here explaining how/where
jbudorick
2015/09/12 02:31:04
obsolete
| |
14 android_sdk = android_sdk_config.AndroidSdkConfig.default() | |
15 binaries = binary_config.BinaryConfig.default() | |
16 dependencies = dependency_config.DependencyConfig.default() | |
17 | |
OLD | NEW |