GN: Fix Chromium breakage for remote_bitrate_estimator

In https://codereview.webrtc.org/2040313004 a config was changed
incorrectly and a dependency on rtc_base_approved is also missing.

BUG=webrtc:5949
TBR=stefan@webrtc.org

Review URL: https://codereview.webrtc.org/2044333004 .

Cr-Commit-Position: refs/heads/master@{#13088}
This commit is contained in:
Henrik Kjellander 2016-06-09 11:55:29 +02:00
parent 5c1d043726
commit d4070c63d9

View File

@ -43,7 +43,7 @@ source_set("remote_bitrate_estimator") {
defines = [ "BWE_TEST_LOGGING_COMPILE_TIME_ENABLE=0" ]
}
configs += [ "../../:common_inherited_config" ]
configs += [ "../..:common_config" ]
public_configs = [ "../..:common_inherited_config" ]
if (is_clang) {
@ -54,6 +54,7 @@ source_set("remote_bitrate_estimator") {
deps = [
"../..:webrtc_common",
"../../base:rtc_base_approved",
"../../system_wrappers",
]
}