Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(25)

Side by Side Diff: build/android/devil/env/__init__.py

Issue 1316413003: [Android] Add a configurable environment for devil/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698