Commit 59036b59 authored by mmoss@chromium.org's avatar mmoss@chromium.org

Flag files accidentally removed from default filegroup processing.

BUG=123378
TBR=thakis

Review URL: https://chromiumcodereview.appspot.com/9972003

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@132352 0039d316-1c4b-4281-b951-d872f2087c98
parent b3edf666
...@@ -20,8 +20,14 @@ ...@@ -20,8 +20,14 @@
# NOTE: This flag will not apply if more than one file has the # NOTE: This flag will not apply if more than one file has the
# same 'archive' name, which will create a zip of all the # same 'archive' name, which will create a zip of all the
# files instead. # files instead.
# filegroup: List of named groups to which this file belongs (e.g. 'symbols' # filegroup: List of named groups to which this file belongs.
# for symbol processing, 'tests' for running tests, etc.). # default: Legacy "default archive". TODO(mmoss): These should
# be updated to specify an 'archive' name and then this
# filegroup and the related archive_utils.ParseLegacyList()
# should go away.
# symbols: Legacy symbol processing (will go away after
# archive_build.py is updated to use the 'archive' field).
# symsrc: Files to upload to the symbol server.
# optional: List of buildtypes for which the file might not exist, and it's not # optional: List of buildtypes for which the file might not exist, and it's not
# considered an error. # considered an error.
...@@ -45,19 +51,19 @@ FILES = [ ...@@ -45,19 +51,19 @@ FILES = [
'filename': 'chrome.exe', 'filename': 'chrome.exe',
'arch': ['32bit', '64bit'], 'arch': ['32bit', '64bit'],
'buildtype': ['dev', 'official'], 'buildtype': ['dev', 'official'],
'filegroup': ['symsrc'], 'filegroup': ['default', 'symsrc'],
}, },
{ {
'filename': 'nacl64.exe', 'filename': 'nacl64.exe',
'arch': ['32bit', '64bit'], 'arch': ['32bit', '64bit'],
'buildtype': ['dev', 'official'], 'buildtype': ['dev', 'official'],
'filegroup': ['symsrc'], 'filegroup': ['default', 'symsrc'],
}, },
{ {
'filename': 'chrome.dll', 'filename': 'chrome.dll',
'arch': ['32bit', '64bit'], 'arch': ['32bit', '64bit'],
'buildtype': ['dev', 'official'], 'buildtype': ['dev', 'official'],
'filegroup': ['symsrc'], 'filegroup': ['default', 'symsrc'],
}, },
{ {
'filename': 'crash_service.exe', 'filename': 'crash_service.exe',
...@@ -414,7 +420,7 @@ FILES = [ ...@@ -414,7 +420,7 @@ FILES = [
'filename': 'ppGoogleNaClPluginChrome.dll', 'filename': 'ppGoogleNaClPluginChrome.dll',
'arch': ['32bit', '64bit'], 'arch': ['32bit', '64bit'],
'buildtype': ['dev', 'official'], 'buildtype': ['dev', 'official'],
'filegroup': ['symsrc'], 'filegroup': ['default', 'symsrc'],
}, },
# Windows Chrome does not have separate x86-32 and x86-64 installs. # Windows Chrome does not have separate x86-32 and x86-64 installs.
# A single install supports both x86-32 and x86-64 versions of NaCl, # A single install supports both x86-32 and x86-64 versions of NaCl,
...@@ -493,25 +499,25 @@ FILES = [ ...@@ -493,25 +499,25 @@ FILES = [
'filename': 'npchrome_frame.dll', 'filename': 'npchrome_frame.dll',
'arch': ['32bit', '64bit'], 'arch': ['32bit', '64bit'],
'buildtype': ['dev', 'official'], 'buildtype': ['dev', 'official'],
'filegroup': ['symsrc'], 'filegroup': ['default', 'symsrc'],
}, },
{ {
'filename': 'chrome_launcher.exe', 'filename': 'chrome_launcher.exe',
'arch': ['32bit', '64bit'], 'arch': ['32bit', '64bit'],
'buildtype': ['dev', 'official'], 'buildtype': ['dev', 'official'],
'filegroup': ['symsrc'], 'filegroup': ['default', 'symsrc'],
}, },
{ {
'filename': 'chrome_frame_helper.exe', 'filename': 'chrome_frame_helper.exe',
'arch': ['32bit', '64bit'], 'arch': ['32bit', '64bit'],
'buildtype': ['dev', 'official'], 'buildtype': ['dev', 'official'],
'filegroup': ['symsrc'], 'filegroup': ['default', 'symsrc'],
}, },
{ {
'filename': 'chrome_frame_helper.dll', 'filename': 'chrome_frame_helper.dll',
'arch': ['32bit', '64bit'], 'arch': ['32bit', '64bit'],
'buildtype': ['dev', 'official'], 'buildtype': ['dev', 'official'],
'filegroup': ['symsrc'], 'filegroup': ['default', 'symsrc'],
}, },
# Perf testing binary: # Perf testing binary:
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment