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

Side by Side Diff: chrome/tools/build/win/FILES.cfg

Issue 707083002: Add app_installer to archive. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month 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 unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # -*- python -*- 1 # -*- python -*-
2 # ex: set syntax=python: 2 # ex: set syntax=python:
3 3
4 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 4 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
5 # Use of this source code is governed by a BSD-style license that can be 5 # Use of this source code is governed by a BSD-style license that can be
6 # found in the LICENSE file. 6 # found in the LICENSE file.
7 7
8 # This is a buildbot configuration file containing a tagged list of files 8 # This is a buildbot configuration file containing a tagged list of files
9 # processed by the stage/archive scripts. The known tags are: 9 # processed by the stage/archive scripts. The known tags are:
10 # 10 #
(...skipping 690 matching lines...) Expand 10 before | Expand all | Expand 10 after
701 { 701 {
702 'filename': 'setup.exe.pdb', 702 'filename': 'setup.exe.pdb',
703 'buildtype': ['dev', 'official'], 703 'buildtype': ['dev', 'official'],
704 'archive': 'chrome-win32-syms.zip', 704 'archive': 'chrome-win32-syms.zip',
705 }, 705 },
706 # Partner API files. 706 # Partner API files.
707 { 707 {
708 'filename': 'gcapi_dll.dll', 708 'filename': 'gcapi_dll.dll',
709 'buildtype': ['dev', 'official'], 709 'buildtype': ['dev', 'official'],
710 }, 710 },
711 # Chrome App Installer files (official build only):
712 {
713 'filename': 'app_installer.exe',
714 'buildtype': ['official'],
715 'archive': 'app_installer.zip',
716 },
717 {
718 'filename': 'app_installer.exe.pdb',
719 'buildtype': ['official'],
720 'archive': 'app_installer.zip',
721 },
711 # PDB files for Syzygy modified binaries. Only add to this section if you 722 # PDB files for Syzygy modified binaries. Only add to this section if you
712 # know what you're doing! The build configuration has to be modified to run 723 # know what you're doing! The build configuration has to be modified to run
713 # Syzygy on the target in question before adding a staging dependency here! 724 # Syzygy on the target in question before adding a staging dependency here!
714 { 725 {
715 'filename': 'syzygy/chrome.dll.pdb', 726 'filename': 'syzygy/chrome.dll.pdb',
716 'arch': ['32bit'], 727 'arch': ['32bit'],
717 'buildtype': ['dev', 'official'], 728 'buildtype': ['dev', 'official'],
718 'archive': 'chrome-win32-syms.zip', 729 'archive': 'chrome-win32-syms.zip',
719 'optional': ['dev'], 730 'optional': ['dev'],
720 }, 731 },
(...skipping 23 matching lines...) Expand all
744 'arch': ['32bit'], 755 'arch': ['32bit'],
745 'buildtype': ['official'], 756 'buildtype': ['official'],
746 'archive': 'chrome-win32-nacl-irt-syms.zip', 757 'archive': 'chrome-win32-nacl-irt-syms.zip',
747 }, 758 },
748 { 759 {
749 'filename': 'nacl_irt_x86_64.nexe.debug', 760 'filename': 'nacl_irt_x86_64.nexe.debug',
750 'buildtype': ['official'], 761 'buildtype': ['official'],
751 'archive': 'chrome-win32-nacl-irt-syms.zip', 762 'archive': 'chrome-win32-nacl-irt-syms.zip',
752 }, 763 },
753 ] 764 ]
OLDNEW
« 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