Commit aef6e624 authored by mmoss@chromium.org's avatar mmoss@chromium.org

Add syzygy files to archives and symbol processing.

Review URL: http://codereview.chromium.org/8836001

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113482 0039d316-1c4b-4281-b951-d872f2087c98
parent 6b56a1ca
...@@ -13,6 +13,9 @@ ...@@ -13,6 +13,9 @@
# (values are based on the strings returned by python's # (values are based on the strings returned by python's
# platform.architecture() function). # platform.architecture() function).
# buildtype: List of build types for which this file should be processed. # buildtype: List of build types for which this file should be processed.
# archive: The name of the archive file to store filename in. If not specified,
# filename is added to the default archive (e.g. platform.zip). If
# archive == filename, filename is archived directly, not zipped.
FILES = [ FILES = [
{ {
...@@ -411,4 +414,23 @@ FILES = [ ...@@ -411,4 +414,23 @@ FILES = [
'arch': ['32bit', '64bit'], 'arch': ['32bit', '64bit'],
'buildtype': ['dev', 'official'], 'buildtype': ['dev', 'official'],
}, },
# syzygy files:
{
'filename': 'syzygy/chrome.dll',
'arch': ['32bit', '64bit'],
'buildtype': ['official'],
'archive': 'syzygy/chrome.dll',
},
{
'filename': 'syzygy/mini_installer.exe',
'arch': ['32bit', '64bit'],
'buildtype': ['official'],
'archive': 'syzygy/mini_installer.exe',
},
{
'filename': 'syzygy/chrome.packed.7z',
'arch': ['32bit', '64bit'],
'buildtype': ['official'],
'archive': 'syzygy/chrome.packed.7z',
},
] ]
...@@ -10,3 +10,5 @@ setup.pdb ...@@ -10,3 +10,5 @@ setup.pdb
gcp_portmon.pdb gcp_portmon.pdb
gcp_portmon64.pdb gcp_portmon64.pdb
virtual_driver_setup.pdb virtual_driver_setup.pdb
syzygy/chrome_dll.pdb
syzygy/mini_installer.pdb
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