diff options
Diffstat (limited to 'chrome/tools')
-rw-r--r-- | chrome/tools/build/win/FILES.cfg | 22 | ||||
-rw-r--r-- | chrome/tools/build/win/SYMBOLS | 2 |
2 files changed, 24 insertions, 0 deletions
diff --git a/chrome/tools/build/win/FILES.cfg b/chrome/tools/build/win/FILES.cfg index 45873e0..a1a2bfa 100644 --- a/chrome/tools/build/win/FILES.cfg +++ b/chrome/tools/build/win/FILES.cfg @@ -13,6 +13,9 @@ # (values are based on the strings returned by python's # platform.architecture() function). # 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 = [ { @@ -411,4 +414,23 @@ FILES = [ 'arch': ['32bit', '64bit'], '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', + }, ] diff --git a/chrome/tools/build/win/SYMBOLS b/chrome/tools/build/win/SYMBOLS index b02ac47..1b1b9f5 100644 --- a/chrome/tools/build/win/SYMBOLS +++ b/chrome/tools/build/win/SYMBOLS @@ -10,3 +10,5 @@ setup.pdb gcp_portmon.pdb gcp_portmon64.pdb virtual_driver_setup.pdb +syzygy/chrome_dll.pdb +syzygy/mini_installer.pdb |