diff options
author | scottmg@chromium.org <scottmg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-15 22:02:16 +0000 |
---|---|---|
committer | scottmg@chromium.org <scottmg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-15 22:02:16 +0000 |
commit | 754b9d76e8a02040c423d7c15737073d48458eb0 (patch) | |
tree | 367f824ac2b8af2c4f797ce908aa011f5520d5b4 | |
parent | fc9e580d56ba3fca6849a4d36a4c5776a5c6ffbd (diff) | |
download | chromium_src-754b9d76e8a02040c423d7c15737073d48458eb0.zip chromium_src-754b9d76e8a02040c423d7c15737073d48458eb0.tar.gz chromium_src-754b9d76e8a02040c423d7c15737073d48458eb0.tar.bz2 |
fix non-fastbuild chrome_split_dll
TBR=cpu@chromium.org
BUG=237249
Review URL: https://codereview.chromium.org/14823013
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@200364 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/installer/mini_installer_syzygy.gyp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/chrome/installer/mini_installer_syzygy.gyp b/chrome/installer/mini_installer_syzygy.gyp index 974d516..3af4c5c 100644 --- a/chrome/installer/mini_installer_syzygy.gyp +++ b/chrome/installer/mini_installer_syzygy.gyp @@ -15,7 +15,7 @@ ], 'conditions': [ # This target won't build in fastbuild, since there are no PDBs. - ['OS=="win" and fastbuild==0', { + ['OS=="win" and fastbuild==0 and chrome_split_dll==0', { 'targets': [ { 'target_name': 'mini_installer_syzygy', @@ -31,6 +31,8 @@ 'includes': [ 'mini_installer.gypi', ], }, ], + },{ + 'targets': [], }], [ 'branding == "Chrome"', { 'variables': { |