| 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'
|
|
|