diff options
author | mckev@amazon.com <mckev@amazon.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-03-20 20:15:41 +0000 |
---|---|---|
committer | mckev@amazon.com <mckev@amazon.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-03-20 20:15:41 +0000 |
commit | ff0c638d1152d3edfd57946c48caa90c3c1aed76 (patch) | |
tree | 120c49bcab84ac3d7a09d22da68e8081a9e11250 /chrome/chrome_common.gypi | |
parent | 14e9ee2e6fd203cbffcc02b11c4d6f071a5d048d (diff) | |
download | chromium_src-ff0c638d1152d3edfd57946c48caa90c3c1aed76.zip chromium_src-ff0c638d1152d3edfd57946c48caa90c3c1aed76.tar.gz chromium_src-ff0c638d1152d3edfd57946c48caa90c3c1aed76.tar.bz2 |
Add missing dependency to cast transport in chrome_common.gypi
In https://codereview.chromium.org/138753004, a dependency to cast transport
is added in chrome_browser.gypi and chrome_renderer.gypi, but there is a
sneaky dependency to cast transport in chrome_common.gypi as well that was
missed.
Any targets that depend on chrome.gyp:common will fail without adding a direct
dependency to cast_messages, without this fix.
The dependency exists in common/common_message_generator.cc, which depends on
common_message_generator.h, which depends on cast_messages.h.
BUG=353410
Review URL: https://codereview.chromium.org/202963002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@258389 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/chrome_common.gypi')
-rw-r--r-- | chrome/chrome_common.gypi | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/chrome/chrome_common.gypi b/chrome/chrome_common.gypi index 1cd51e2..8d8c7f1 100644 --- a/chrome/chrome_common.gypi +++ b/chrome/chrome_common.gypi @@ -43,6 +43,7 @@ '<(DEPTH)/components/components.gyp:variations', '<(DEPTH)/content/content.gyp:content_common', '<(DEPTH)/crypto/crypto.gyp:crypto', + '<(DEPTH)/media/cast/transport/cast_transport.gyp:cast_transport', '<(DEPTH)/net/net.gyp:net', '<(DEPTH)/skia/skia.gyp:skia', '<(DEPTH)/third_party/icu/icu.gyp:icui18n', |