Use relative paths in GN files.

BUG=webrtc:7952
TBR=kjellander@webrtc.org
NOTRY=True

Review-Url: https://codereview.webrtc.org/2974863003
Cr-Original-Commit-Position: refs/heads/master@{#18970}
Cr-Mirrored-From: https://chromium.googlesource.com/external/webrtc
Cr-Mirrored-Commit: c024740b5ede39ecb82fdb9dbc734648974c998a
diff --git a/call/BUILD.gn b/call/BUILD.gn
index 6a50ea0..c26c761 100644
--- a/call/BUILD.gn
+++ b/call/BUILD.gn
@@ -130,7 +130,7 @@
     # gets additional generated targets which would require many lines here to
     # cover (which would be confusing to read and hard to maintain).
     if (!is_android && !is_ios) {
-      visibility = [ "//webrtc:video_engine_tests" ]
+      visibility = [ "..:video_engine_tests" ]
     }
     sources = [
       "bitrate_allocator_unittest.cc",
@@ -180,7 +180,7 @@
     # gets additional generated targets which would require many lines here to
     # cover (which would be confusing to read and hard to maintain).
     if (!is_android && !is_ios) {
-      visibility = [ "//webrtc:webrtc_perf_tests" ]
+      visibility = [ "..:webrtc_perf_tests" ]
     }
     sources = [
       "call_perf_tests.cc",
@@ -200,13 +200,13 @@
       "../system_wrappers:metrics_default",
       "../test:direct_transport",
       "../test:fake_audio_device",
+      "../test:field_trial",
+      "../test:test_common",
       "../test:test_support",
       "../test:video_test_common",
       "../video",
       "../voice_engine",
       "//testing/gtest",
-      "//webrtc/test:field_trial",
-      "//webrtc/test:test_common",
     ]
     if (!build_with_chromium && is_clang) {
       # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).