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

Unified 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 side-by-side diff with in-line comments
Download patch
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()
+

Powered by Google App Engine
This is Rietveld 408576698