diff options
author | scottmg@chromium.org <scottmg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-28 08:46:23 +0000 |
---|---|---|
committer | scottmg@chromium.org <scottmg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-28 08:46:23 +0000 |
commit | 4cda237f8b9f7c63bc9d7d3b25bf895ea60e3435 (patch) | |
tree | e9dff26c8a4c4450cf189f8b0bfc5b1907bea22b | |
parent | c6f1662c720255109fdf40a892a3e97049511393 (diff) | |
download | chromium_src-4cda237f8b9f7c63bc9d7d3b25bf895ea60e3435.zip chromium_src-4cda237f8b9f7c63bc9d7d3b25bf895ea60e3435.tar.gz chromium_src-4cda237f8b9f7c63bc9d7d3b25bf895ea60e3435.tar.bz2 |
update FILES.cfg to optionally include chrome_child.dll and related
chrome.dll is going to have a chunk split off (chrome_child.dll). This
will only be on for some builds for the near term, so the intention is
that the inclusion of those files is optional in all situations.
R=mmoss@chromium.org
BUG=237249
Review URL: https://chromiumcodereview.appspot.com/20639003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@214109 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/tools/build/win/FILES.cfg | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/chrome/tools/build/win/FILES.cfg b/chrome/tools/build/win/FILES.cfg index 80122c4..b893451 100644 --- a/chrome/tools/build/win/FILES.cfg +++ b/chrome/tools/build/win/FILES.cfg @@ -57,6 +57,12 @@ FILES = [ 'filegroup': ['default', 'symsrc'], }, { + 'filename': 'chrome_child.dll', + 'buildtype': ['dev', 'official'], + 'filegroup': ['default', 'symsrc'], + 'optional': ['dev', 'official'], + }, + { 'filename': 'chrome_100_percent.pak', 'buildtype': ['dev', 'official'], }, @@ -518,6 +524,12 @@ FILES = [ 'optional': ['dev'], }, { + 'filename': 'chrome_child.dll-order.json', + 'arch': ['32bit'], + 'buildtype': ['dev', 'official'], + 'optional': ['dev', 'official'], + }, + { 'filename': 'syzygy/chrome.dll', 'arch': ['32bit'], 'buildtype': ['dev', 'official'], @@ -526,6 +538,14 @@ FILES = [ 'optional': ['dev'], }, { + 'filename': 'syzygy/chrome_child.dll', + 'arch': ['32bit'], + 'buildtype': ['dev', 'official'], + 'archive': 'syzygy/chrome_child.dll', + 'filegroup': ['symsrc'], + 'optional': ['dev', 'official'], + }, + { 'filename': 'syzygy/mini_installer.exe', 'arch': ['32bit'], 'buildtype': ['dev', 'official'], @@ -653,6 +673,12 @@ FILES = [ 'archive': 'chrome-win32-syms.zip', }, { + 'filename': 'chrome_child.dll.pdb', + 'buildtype': ['dev', 'official'], + 'optional': ['dev', 'official'], + 'archive': 'chrome-win32-syms.zip', + }, + { 'filename': 'chrome.exe.pdb', 'buildtype': ['dev', 'official'], 'archive': 'chrome-win32-syms.zip', @@ -720,6 +746,13 @@ FILES = [ 'optional': ['dev'], }, { + 'filename': 'syzygy/chrome_child.dll.pdb', + 'arch': ['32bit'], + 'buildtype': ['dev', 'official'], + 'archive': 'chrome-win32-syms.zip', + 'optional': ['dev', 'official'], + }, + { 'filename': 'syzygy/mini_installer.exe.pdb', 'arch': ['32bit'], 'buildtype': ['dev', 'official'], |