summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorbulach@chromium.org <bulach@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-08-16 20:37:02 +0000
committerbulach@chromium.org <bulach@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-08-16 20:37:02 +0000
commitcc9411fb6ecbb2f33beb4465e7c94574e75515fe (patch)
treede760818ffdc539ace9add5dd36c7feefa0bb8ec /build
parentafe9aba2de06c38e2d6418baeb567a3c04d46903 (diff)
downloadchromium_src-cc9411fb6ecbb2f33beb4465e7c94574e75515fe.zip
chromium_src-cc9411fb6ecbb2f33beb4465e7c94574e75515fe.tar.gz
chromium_src-cc9411fb6ecbb2f33beb4465e7c94574e75515fe.tar.bz2
Android: uses BUILDTYPE rather than CHROMIUM_BUILD_TYPE.
Buildbot and other platforms use BUILDTYPE. BUG=260494 Review URL: https://chromiumcodereview.appspot.com/23075007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@218078 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rw-r--r--build/android/pylib/constants.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/build/android/pylib/constants.py b/build/android/pylib/constants.py
index dd68f4a..bf35fff 100644
--- a/build/android/pylib/constants.py
+++ b/build/android/pylib/constants.py
@@ -85,13 +85,13 @@ UPSTREAM_FLAKINESS_SERVER = 'test-results.appspot.com'
def GetBuildType():
try:
- return os.environ['CHROMIUM_BUILD_TYPE']
+ return os.environ['BUILDTYPE']
except KeyError:
- raise Exception('The build type has not been set')
+ raise Exception('The BUILDTYPE environment variable has not been set')
def SetBuildType(build_type):
- os.environ['CHROMIUM_BUILD_TYPE'] = build_type
+ os.environ['BUILDTYPE'] = build_type
def _GetADBPath():