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

Unified Diff: trunk/src/build/android/pylib/constants.py

Issue 23926012: Revert 221736 "[android] Adds constants.GetOutDirectory() and co..." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 7 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
« no previous file with comments | « trunk/src/build/android/pylib/cmd_helper.py ('k') | trunk/src/build/android/pylib/device_stats_monitor.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: trunk/src/build/android/pylib/constants.py
===================================================================
--- trunk/src/build/android/pylib/constants.py (revision 222006)
+++ trunk/src/build/android/pylib/constants.py (working copy)
@@ -132,18 +132,6 @@
os.environ['BUILDTYPE'] = build_type
-def GetOutDirectory(build_type=None):
- """Returns the out directory where the output binaries are built.
-
- Args:
- build_type: Build type, generally 'Debug' or 'Release'. Defaults to the
- globally set build type environment variable BUILDTYPE.
- """
- return os.path.abspath(os.path.join(
- DIR_SOURCE_ROOT, os.environ.get('CHROMIUM_OUT_DIR', 'out'),
- GetBuildType() if build_type is None else build_type))
-
-
def _GetADBPath():
if os.environ.get('ANDROID_SDK_ROOT'):
return 'adb'
« no previous file with comments | « trunk/src/build/android/pylib/cmd_helper.py ('k') | trunk/src/build/android/pylib/device_stats_monitor.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698