diff options
Diffstat (limited to 'chrome/tools/build')
-rw-r--r-- | chrome/tools/build/win/dependencies.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/chrome/tools/build/win/dependencies.py b/chrome/tools/build/win/dependencies.py index eee42c9..5e026a5 100644 --- a/chrome/tools/build/win/dependencies.py +++ b/chrome/tools/build/win/dependencies.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/python # Copyright (c) 2006-2008 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. @@ -20,9 +20,10 @@ import os import subprocess import sys -# TODO(rahulk): Default should change to chromium once env var is set properly -DIST_DEFAULT = '_google_chrome' +# The default distribution name and the environment variable that overrides it. +DIST_DEFAULT = '_chromium' DIST_ENV_VAR = 'CHROMIUM_BUILD' + DUMPBIN = "dumpbin.exe" |