diff options
author | gab@chromium.org <gab@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-09-11 20:58:57 +0000 |
---|---|---|
committer | gab@chromium.org <gab@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-09-11 20:58:57 +0000 |
commit | 2ee0457c0aee2aaded19c1cfafa6ac2d0e3dec69 (patch) | |
tree | 9d0576c27bd853c7d67fd2213c782230eebb92cf /tools/win | |
parent | 59057f803169ce9e9f4dd925dc7ffa138f309c30 (diff) | |
download | chromium_src-2ee0457c0aee2aaded19c1cfafa6ac2d0e3dec69.zip chromium_src-2ee0457c0aee2aaded19c1cfafa6ac2d0e3dec69.tar.gz chromium_src-2ee0457c0aee2aaded19c1cfafa6ac2d0e3dec69.tar.bz2 |
Avoid copying test pdbs in copy_installer.bat
NOTRY=True
BUG=*.pdb would catch things like browser_tests.exe.pdb which are HUGE and unnecessary.
TEST= Only copies desired binaries and pdbs.
R=grt@chromium.org
Review URL: https://codereview.chromium.org/23863005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@222627 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/win')
-rwxr-xr-x | tools/win/copy-installer.bat | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/tools/win/copy-installer.bat b/tools/win/copy-installer.bat index 2615cba..92768f1 100755 --- a/tools/win/copy-installer.bat +++ b/tools/win/copy-installer.bat @@ -50,14 +50,18 @@ SET TO=\%OUTPUT%\%BUILDTYPE% REM Figure out what files to copy based on the component type (shared/static).
IF EXIST "%FROM%\base.dll" (
-SET TOCOPY=*.pdb setup.exe setup.exe.manifest chrome.7z *.dll
+SET TOCOPY=setup.exe setup.exe.manifest chrome.7z *.dll
SET ARCHIVETODELETE=chrome.packed.7z
SET INSTALLER=setup.exe
) ELSE (
-SET TOCOPY=*.pdb mini_installer.exe
+SET TOCOPY=mini_installer.exe mini_installer.exe.pdb
SET INSTALLER=mini_installer.exe
)
+SET TOCOPY=%TOCOPY% *.dll.pdb chrome.exe.pdb setup.exe.pdb^
+ chrome_frame_helper.exe.pdb chrome_launcher.exe.pdb^
+ delegate_execute.exe.pdb
+
CALL :_copyfiles
REM incremental_chrome_dll=1 puts chrome_dll.pdb into the "initial" dir.
|