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

Unified Diff: tools/bisect_android_envsetup_helper.sh

Issue 16132012: First pass android support in bisect script. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 6 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: tools/bisect_android_envsetup_helper.sh
diff --git a/tools/bisect_android_envsetup_helper.sh b/tools/bisect_android_envsetup_helper.sh
new file mode 100755
index 0000000000000000000000000000000000000000..958fb2d67a7bf971801df706d3dbab51bbc1eb1f
--- /dev/null
+++ b/tools/bisect_android_envsetup_helper.sh
@@ -0,0 +1,11 @@
+#!/bin/sh
+
+. build/android/envsetup.sh
+
+python -c "
+import os
+
+print 'android_env = {'
+for k, v in os.environ.iteritems():
+ print '\"%s\": \"%s\",' % (k, str(v))
+print '}'"

Powered by Google App Engine
This is Rietveld 408576698