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:
@ -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",
|
||||
]
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user