From 2a495ca2971282bda060d603e95a498dd9839689 Mon Sep 17 00:00:00 2001 From: mbonadei Date: Wed, 21 Dec 2016 00:26:58 -0800 Subject: [PATCH] Refactor webrtc/modules/pacing for GN check This moves some GN check configurations out of .gn to individual targets. The now checked target is: "//webrtc/modules/pacing/*" BUG=webrtc:6828 NOTRY=True Review-Url: https://codereview.webrtc.org/2594523003 Cr-Commit-Position: refs/heads/master@{#15729} --- .gn | 1 + webrtc/modules/pacing/BUILD.gn | 2 ++ 2 files changed, 3 insertions(+) diff --git a/.gn b/.gn index d391a53f83..961190dbc1 100644 --- a/.gn +++ b/.gn @@ -30,6 +30,7 @@ check_targets = [ "//webrtc/modules/audio_processing/*", "//webrtc/modules/desktop_capture/*", "//webrtc/modules/media_file/*", + "//webrtc/modules/pacing/*", "//webrtc/modules/video_capture/*", "//webrtc/modules/video_coding/*", "//webrtc/stats:rtc_stats", diff --git a/webrtc/modules/pacing/BUILD.gn b/webrtc/modules/pacing/BUILD.gn index cba0d3edc9..cb27a591ab 100644 --- a/webrtc/modules/pacing/BUILD.gn +++ b/webrtc/modules/pacing/BUILD.gn @@ -26,6 +26,8 @@ rtc_static_library("pacing") { } deps = [ + "../..:webrtc_common", + "../../base:rtc_base_approved", "../../system_wrappers", "../bitrate_controller", "../rtp_rtcp",