diff options
-rw-r--r-- | chrome/tools/build/win/FILES.cfg | 99 |
1 files changed, 99 insertions, 0 deletions
diff --git a/chrome/tools/build/win/FILES.cfg b/chrome/tools/build/win/FILES.cfg index a7ef7d4..85f8d51 100644 --- a/chrome/tools/build/win/FILES.cfg +++ b/chrome/tools/build/win/FILES.cfg @@ -524,4 +524,103 @@ FILES = [ 'buildtype': ['official'], 'archive': 'courgette64.exe', }, + # TODO(mmoss): Use custom archive setting to control archiving of symbols for + # dev builds. Official builds still use the old-style SYMBOLS file until the + # official build scripts are updated to use FILES.cfg. + { + 'filename': 'chrome_dll.pdb', + 'arch': ['32bit', '64bit'], + 'buildtype': ['dev'], + 'archive': 'chrome-win32-syms.zip', + }, + { + 'filename': 'chrome_exe.pdb', + 'arch': ['32bit', '64bit'], + 'buildtype': ['dev'], + 'archive': 'chrome-win32-syms.zip', + }, + { + 'filename': 'libEGL.pdb', + 'arch': ['32bit', '64bit'], + 'buildtype': ['dev'], + 'archive': 'chrome-win32-syms.zip', + }, + { + 'filename': 'libGLESv2.pdb', + 'arch': ['32bit', '64bit'], + 'buildtype': ['dev'], + 'archive': 'chrome-win32-syms.zip', + }, + { + 'filename': 'mini_installer.pdb', + 'arch': ['32bit', '64bit'], + 'buildtype': ['dev'], + 'archive': 'chrome-win32-syms.zip', + }, + { + 'filename': 'nacl64_exe.pdb', + 'arch': ['32bit', '64bit'], + 'buildtype': ['dev'], + 'archive': 'chrome-win32-syms.zip', + }, + { + 'filename': 'ppGoogleNaClPluginChrome.pdb', + 'arch': ['32bit', '64bit'], + 'buildtype': ['dev'], + 'archive': 'chrome-win32-syms.zip', + }, + { + 'filename': 'remoting_host_plugin.pdb', + 'arch': ['32bit', '64bit'], + 'buildtype': ['dev'], + 'archive': 'chrome-win32-syms.zip', + }, + { + 'filename': 'setup.pdb', + 'arch': ['32bit', '64bit'], + 'buildtype': ['dev'], + 'archive': 'chrome-win32-syms.zip', + }, + { + 'filename': 'gcp_portmon.pdb', + 'arch': ['32bit', '64bit'], + 'buildtype': ['dev'], + 'archive': 'chrome-win32-syms.zip', + }, + { + 'filename': 'gcp_portmon64.pdb', + 'arch': ['32bit', '64bit'], + 'buildtype': ['dev'], + 'archive': 'chrome-win32-syms.zip', + }, + { + 'filename': 'virtual_driver_setup.pdb', + 'arch': ['32bit', '64bit'], + 'buildtype': ['dev'], + 'archive': 'chrome-win32-syms.zip', + }, + { + 'filename': 'npchrome_frame.pdb', + 'arch': ['32bit', '64bit'], + 'buildtype': ['dev'], + 'archive': 'chrome-win32-syms.zip', + }, + { + 'filename': 'chrome_launcher.pdb', + 'arch': ['32bit', '64bit'], + 'buildtype': ['dev'], + 'archive': 'chrome-win32-syms.zip', + }, + { + 'filename': 'chrome_frame_helper.pdb', + 'arch': ['32bit', '64bit'], + 'buildtype': ['dev'], + 'archive': 'chrome-win32-syms.zip', + }, + { + 'filename': 'chrome_frame_helper_dll.pdb', + 'arch': ['32bit', '64bit'], + 'buildtype': ['dev'], + 'archive': 'chrome-win32-syms.zip', + }, ] |