diff options
author | scottmg@chromium.org <scottmg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-02-22 06:27:18 +0000 |
---|---|---|
committer | scottmg@chromium.org <scottmg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-02-22 06:27:18 +0000 |
commit | 0bb375509c60a04c94f2cd6a96cc856271ce49ce (patch) | |
tree | a2c83a03e1175932ae7baa7855cfa84039149f75 /build/gyp_chromium | |
parent | a70cccddc03cbfbdf0a3acb726ad8df6410060e8 (diff) | |
download | chromium_src-0bb375509c60a04c94f2cd6a96cc856271ce49ce.zip chromium_src-0bb375509c60a04c94f2cd6a96cc856271ce49ce.tar.gz chromium_src-0bb375509c60a04c94f2cd6a96cc856271ce49ce.tar.bz2 |
Default to off pending resolution of Official build problem
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@252752 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build/gyp_chromium')
-rwxr-xr-x | build/gyp_chromium | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/build/gyp_chromium b/build/gyp_chromium index 63ac799..a158f39 100755 --- a/build/gyp_chromium +++ b/build/gyp_chromium @@ -456,8 +456,9 @@ if __name__ == '__main__': # If on Windows, request that depot_tools install/update the automatic # toolchain, and then use it (unless opted-out). vs2013_runtime_dll_dirs = None + # TODO(scottmg): Temporarily default to off, see http://crbug.com/345993. depot_tools_win_toolchain = \ - bool(int(os.environ.get('DEPOT_TOOLS_WIN_TOOLCHAIN', '1'))) + bool(int(os.environ.get('DEPOT_TOOLS_WIN_TOOLCHAIN', '0'))) if sys.platform in ('win32', 'cygwin') and depot_tools_win_toolchain: import find_depot_tools depot_tools_path = find_depot_tools.add_depot_tools_to_path() |