diff options
author | caitkp@chromium.org <caitkp@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-02-10 21:10:51 +0000 |
---|---|---|
committer | caitkp@chromium.org <caitkp@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-02-10 21:10:51 +0000 |
commit | b66deffe0273ad9f53560d906bb160a226dc444a (patch) | |
tree | 78a12c207dd37391094cf030df33b28fd548a78b /chrome/chrome_dll.gypi | |
parent | d0bb99517df2c659c3b5808bcfb246fd2d7d97b4 (diff) | |
download | chromium_src-b66deffe0273ad9f53560d906bb160a226dc444a.zip chromium_src-b66deffe0273ad9f53560d906bb160a226dc444a.tar.gz chromium_src-b66deffe0273ad9f53560d906bb160a226dc444a.tar.bz2 |
Enable Chrome redirects for non-component builds
BUG=334379
Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=248600
Review URL: https://codereview.chromium.org/153083002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@250204 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/chrome_dll.gypi')
-rw-r--r-- | chrome/chrome_dll.gypi | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/chrome/chrome_dll.gypi b/chrome/chrome_dll.gypi index eca5ac3..13756e1 100644 --- a/chrome/chrome_dll.gypi +++ b/chrome/chrome_dll.gypi @@ -82,6 +82,11 @@ '../content/content.gyp:content_app_browser', ], 'conditions': [ + ['OS=="win"', { + 'dependencies': [ + '<(DEPTH)/chrome_elf/chrome_elf.gyp:chrome_elf', + ], + }], ['use_aura==1', { 'dependencies': [ '../ui/compositor/compositor.gyp:compositor', @@ -358,6 +363,13 @@ 'app/chrome_main_delegate.cc', 'app/chrome_main_delegate.h', ], + 'conditions': [ + ['OS=="win"', { + 'dependencies': [ + '<(DEPTH)/chrome_elf/chrome_elf.gyp:chrome_elf', + ], + }], + ], }, # target chrome_child_dll ], }], |