From 2d3747de9b7c3014e106d3766dc07cf5da3e1881 Mon Sep 17 00:00:00 2001 From: tfarina Date: Mon, 26 Oct 2015 05:47:37 -0700 Subject: [PATCH] Fix for Mac GN BUILD. It can't find //webrtc/base:rtc_base, which is weird, the fix is to use a relative path. This should fix the following error: ERROR at //third_party/webrtc/sound/BUILD.gn:38:5: Can't load input file. "//webrtc/base:rtc_base", ^----------------------- NOTRY=true BUG=webrtc:4160 TBR=kjellander@webrtc.org Review URL: https://codereview.webrtc.org/1419953003 Cr-Commit-Position: refs/heads/master@{#10407} --- webrtc/sound/BUILD.gn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webrtc/sound/BUILD.gn b/webrtc/sound/BUILD.gn index 82bfdd104e..82c6d778f1 100644 --- a/webrtc/sound/BUILD.gn +++ b/webrtc/sound/BUILD.gn @@ -35,7 +35,7 @@ static_library("rtc_sound") { } deps = [ - "//webrtc/base:rtc_base", + "../base:rtc_base", ] if (is_linux) {