Use relative names in GN to make Chromium happy

A recent CL (https://codereview.chromium.org/2388153004/) introduced absolute names, which caused Chromium builds
to fail.

TBR=kjellander@webrtc.org
BUG=webrtc:5801

Review-Url: https://codereview.webrtc.org/2446643005
Cr-Commit-Position: refs/heads/master@{#14755}
This commit is contained in:
kwiberg
2016-10-24 16:31:17 -07:00
committed by Commit bot
parent 4a18f16c62
commit a6b8298b48

View File

@ -45,7 +45,7 @@ rtc_static_library("audio_format") {
"codecs/audio_format.h",
]
deps = [
"//webrtc:webrtc_common",
"../..:webrtc_common",
]
}
@ -56,8 +56,8 @@ rtc_static_library("audio_format_conversion") {
]
deps = [
":audio_format",
"//webrtc:webrtc_common",
"//webrtc/base:rtc_base_approved",
"../..:webrtc_common",
"../../base:rtc_base_approved",
]
}
@ -68,7 +68,7 @@ rtc_source_set("audio_decoder_factory_interface") {
deps = [
":audio_decoder_interface",
":audio_format",
"//webrtc/base:rtc_base_approved",
"../../base:rtc_base_approved",
]
}