diff options
author | Brett Wilson <brettw@chromium.org> | 2014-09-02 12:45:33 -0700 |
---|---|---|
committer | Brett Wilson <brettw@chromium.org> | 2014-09-02 19:57:56 +0000 |
commit | 83fd424ef7bcba7af879bad8cd62bf708e6f5947 (patch) | |
tree | d39c6ac3280c3c53a53478ff11007ef810f8f341 /content/test/BUILD.gn | |
parent | 68f381a7f13f8aeedc7c6601e53e036dbab55e79 (diff) | |
download | chromium_src-83fd424ef7bcba7af879bad8cd62bf708e6f5947.zip chromium_src-83fd424ef7bcba7af879bad8cd62bf708e6f5947.tar.gz chromium_src-83fd424ef7bcba7af879bad8cd62bf708e6f5947.tar.bz2 |
Fix Chrome linker errors in GN build.
This fixes all non-RTC-related linker errors for Chrome.
R=jamesr@chromium.org
Review URL: https://codereview.chromium.org/533743004
Cr-Commit-Position: refs/heads/master@{#292978}
Diffstat (limited to 'content/test/BUILD.gn')
-rw-r--r-- | content/test/BUILD.gn | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/content/test/BUILD.gn b/content/test/BUILD.gn index 9ebf588..8218f3e 100644 --- a/content/test/BUILD.gn +++ b/content/test/BUILD.gn @@ -68,7 +68,7 @@ static_library("test_support") { if (enable_webrtc) { # TODO(GYP) remove this when libjingle is converted. - configs += [ "//content:libjingle_stub_config" ] + configs += [ "//third_party/libjingle:jingle_direct_dependent_configs" ] sources += [ "../renderer/media/mock_media_stream_dispatcher.cc", @@ -84,7 +84,7 @@ static_library("test_support") { deps += [ #"//third_party/libjingle:webrtc", TODO(GYP) #"//third_party/libjingle:peerconnection", TODO(GYP) - #"//third_party/webrtc/modules:video_capture", TODO(GYP) + "//third_party/webrtc/modules/video_capture", ] } |