Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3763)

Unified Diff: build/win/copy_cdb_to_output.py

Issue 1899833002: Add x86 to copy_cdb_to_output Allowed Architectures (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix Comment Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/win/copy_cdb_to_output.py
diff --git a/build/win/copy_cdb_to_output.py b/build/win/copy_cdb_to_output.py
index 5cb52b23c2c2e296c9cf23ce8b309dd3c7a78cfa..1354336f07a5fdc400173aba8286c9569bb15a4b 100755
--- a/build/win/copy_cdb_to_output.py
+++ b/build/win/copy_cdb_to_output.py
@@ -48,13 +48,13 @@ def _CopyCDBToOutput(output_dir, target_arch):
directory, which is created if it does not exist. The output
directory, and target architecture that should be copied, are
passed. Supported values for the target architecture are the GYP
- values "ia32" and "x64".
+ values "ia32" and "x64" and the GN values "x86" and "x64".
"""
if not os.path.isdir(output_dir):
os.makedirs(output_dir)
vs_toolchain.SetEnvironmentAndGetRuntimeDllDirs()
win_sdk_dir = os.path.normpath(os.environ['WINDOWSSDKDIR'])
- if target_arch == 'ia32':
+ if target_arch == 'ia32' or target_arch == 'x86':
src_arch = 'x86'
elif target_arch == 'x64':
src_arch = 'x64'
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698