From a6b8298b48ad0bbacd164c691c8407f8875a69cf Mon Sep 17 00:00:00 2001 From: kwiberg Date: Mon, 24 Oct 2016 16:31:17 -0700 Subject: [PATCH] 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} --- webrtc/modules/audio_coding/BUILD.gn | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/webrtc/modules/audio_coding/BUILD.gn b/webrtc/modules/audio_coding/BUILD.gn index 6f47dcce94..81e07920b2 100644 --- a/webrtc/modules/audio_coding/BUILD.gn +++ b/webrtc/modules/audio_coding/BUILD.gn @@ -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", ] }