diff options
author | scottmg@chromium.org <scottmg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-02-22 04:52:15 +0000 |
---|---|---|
committer | scottmg@chromium.org <scottmg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-02-22 04:52:15 +0000 |
commit | c18f4c0c7237cd69922313d85dabb2a952a7f498 (patch) | |
tree | 7d58f56f926aa30d339f063a506a17d4abba8fa9 /build/gyp_chromium | |
parent | 3ff1fc6913c52338f9d8787608a9a8fc87726dd2 (diff) | |
download | chromium_src-c18f4c0c7237cd69922313d85dabb2a952a7f498.zip chromium_src-c18f4c0c7237cd69922313d85dabb2a952a7f498.tar.gz chromium_src-c18f4c0c7237cd69922313d85dabb2a952a7f498.tar.bz2 |
add temporary debug prints to debug builders
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@252748 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build/gyp_chromium')
-rwxr-xr-x | build/gyp_chromium | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/build/gyp_chromium b/build/gyp_chromium index c940832..a085374 100755 --- a/build/gyp_chromium +++ b/build/gyp_chromium @@ -350,6 +350,8 @@ def CopyVsRuntimeDlls(output_dir, runtime_dirs): """ assert sys.platform.startswith(('win32', 'cygwin')) + print 'Copying runtime DLLs:' + def copy_runtime(target_dir, source_dir, dll_pattern): """Copy both the msvcr and msvcp runtime DLLs, only if the target doesn't exist, but the target directory does exist.""" @@ -359,7 +361,9 @@ def CopyVsRuntimeDlls(output_dir, runtime_dirs): source = os.path.join(source_dir, dll) # If gyp generated to that output dir, and the runtime isn't already # there, then copy it over. + print source, target, target_dir if os.path.isdir(target_dir) and not os.path.isfile(target): + print ' copying', source, target shutil.copyfile(source, target) x86, x64 = runtime_dirs @@ -453,7 +457,6 @@ if __name__ == '__main__': vs2013_runtime_dll_dirs = None depot_tools_win_toolchain = \ bool(int(os.environ.get('DEPOT_TOOLS_WIN_TOOLCHAIN', '1'))) - # TODO(scottmg): temp build fix while switching to 2013. 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() |