Cleanup BUILD.gn files from imports like foo:foo

Repalce all occurrences of foo:foo in deps with just foo in BUILD.gn
files.

Done with Sublime regex replace.
Find: \b([-a-zA-Z0-9_]+):+\1\b
In: *.gn
Replace with: \1

Bug: None
Change-Id: I40aba1b14face687a595b852ffe443cb20197611
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/127899
Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org>
Commit-Queue: Artem Titov <titovartem@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#27225}
This commit is contained in:
Artem Titov
2019-03-21 13:35:10 +01:00
committed by Commit Bot
parent 53de7255b9
commit 94b57c044e
43 changed files with 266 additions and 266 deletions

View File

@ -111,7 +111,7 @@ rtc_source_set("rtc_event_bwe") {
deps = [
":rtc_event_log_api",
"../api:scoped_refptr",
"../modules/remote_bitrate_estimator:remote_bitrate_estimator",
"../modules/remote_bitrate_estimator",
"//third_party/abseil-cpp/absl/memory",
]
}
@ -195,7 +195,7 @@ rtc_static_library("rtc_event_log_impl_encoder") {
"../rtc_base:checks",
"../rtc_base:rtc_base_approved",
"//third_party/abseil-cpp/absl/memory",
"//third_party/abseil-cpp/absl/strings:strings",
"//third_party/abseil-cpp/absl/strings",
"//third_party/abseil-cpp/absl/types:optional",
]
@ -216,7 +216,7 @@ rtc_static_library("rtc_event_log_impl_encoder") {
":rtc_stream_config",
"../api:array_view",
"../modules/audio_coding:audio_network_adaptor",
"../modules/remote_bitrate_estimator:remote_bitrate_estimator",
"../modules/remote_bitrate_estimator",
"../modules/rtp_rtcp:rtp_rtcp_format",
]
sources += [
@ -287,8 +287,8 @@ rtc_source_set("fake_rtc_event_log") {
deps = [
":ice_log",
":rtc_event_log_api",
"../rtc_base",
"../rtc_base:checks",
"../rtc_base:rtc_base",
]
}
@ -336,7 +336,7 @@ if (rtc_enable_protobuf) {
"../call:video_stream_api",
"../modules/audio_coding:audio_network_adaptor",
"../modules/congestion_controller/rtp:transport_feedback",
"../modules/remote_bitrate_estimator:remote_bitrate_estimator",
"../modules/remote_bitrate_estimator",
"../modules/rtp_rtcp",
"../modules/rtp_rtcp:rtp_rtcp_format",
"../rtc_base:checks",
@ -387,12 +387,12 @@ if (rtc_enable_protobuf) {
"../call",
"../call:call_interfaces",
"../modules/audio_coding:audio_network_adaptor",
"../modules/remote_bitrate_estimator:remote_bitrate_estimator",
"../modules/remote_bitrate_estimator",
"../modules/rtp_rtcp:rtp_rtcp_format",
"../rtc_base:checks",
"../rtc_base:rtc_base_approved",
"../rtc_base:rtc_base_tests_utils",
"../system_wrappers:system_wrappers",
"../system_wrappers",
"../test:fileutils",
"../test:test_support",
"//testing/gtest",