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

@ -90,8 +90,8 @@ rtc_static_library("rtc_p2p") {
"../api/transport:enums",
"../logging:ice_log",
"../logging:rtc_event_log_api",
"../rtc_base",
"../rtc_base:checks",
"../rtc_base:rtc_base",
"../rtc_base:safe_minmax",
"../rtc_base:weak_ptr",
"../rtc_base/network:sent_packet",
@ -122,7 +122,7 @@ if (rtc_include_tests) {
]
deps = [
":rtc_p2p",
"../rtc_base:rtc_base",
"../rtc_base",
"../rtc_base:rtc_base_approved",
"//third_party/abseil-cpp/absl/algorithm:container",
"//third_party/abseil-cpp/absl/types:optional",
@ -149,8 +149,8 @@ if (rtc_include_tests) {
":rtc_p2p",
"../api:libjingle_peerconnection_api",
"../api:ortc_api",
"../rtc_base",
"../rtc_base:gunit_helpers",
"../rtc_base:rtc_base",
"../rtc_base:rtc_base_approved",
"../rtc_base:rtc_base_tests_utils",
"../rtc_base/third_party/sigslot",
@ -196,14 +196,14 @@ if (rtc_include_tests) {
"../api:ortc_api",
"../api:scoped_refptr",
"../api/units:time_delta",
"../rtc_base",
"../rtc_base:checks",
"../rtc_base:gunit_helpers",
"../rtc_base:rtc_base",
"../rtc_base:rtc_base_approved",
"../rtc_base:rtc_base_tests_utils",
"../rtc_base:testclient",
"../rtc_base/network:sent_packet",
"../rtc_base/third_party/sigslot:sigslot",
"../rtc_base/third_party/sigslot",
"../system_wrappers:metrics",
"../test:test_support",
"//testing/gtest",
@ -225,8 +225,8 @@ rtc_source_set("p2p_server_utils") {
]
deps = [
":rtc_p2p",
"../rtc_base",
"../rtc_base:checks",
"../rtc_base:rtc_base",
"../rtc_base:rtc_base_tests_utils",
"../rtc_base/third_party/sigslot",
"//third_party/abseil-cpp/absl/algorithm:container",
@ -244,8 +244,8 @@ rtc_static_library("libstunprober") {
deps = [
":rtc_p2p",
"..:webrtc_common",
"../rtc_base",
"../rtc_base:checks",
"../rtc_base:rtc_base",
"../rtc_base/system:rtc_export",
]
}
@ -261,9 +261,9 @@ if (rtc_include_tests) {
":libstunprober",
":p2p_test_utils",
":rtc_p2p",
"../rtc_base",
"../rtc_base:checks",
"../rtc_base:gunit_helpers",
"../rtc_base:rtc_base",
"../rtc_base:rtc_base_tests_utils",
"../test:test_support",
"//testing/gtest",