From 1c6cc9a05f4f66bd24b8f2aabf87a78deee47682 Mon Sep 17 00:00:00 2001 From: kjellander Date: Mon, 27 Feb 2017 16:37:54 -0800 Subject: [PATCH] Enable GN check for webrtc/common_video BUG=webrtc:6828 NOTRY=True Review-Url: https://codereview.webrtc.org/2715113002 Cr-Commit-Position: refs/heads/master@{#16883} --- .gn | 1 + webrtc/common_video/BUILD.gn | 3 +++ 2 files changed, 4 insertions(+) diff --git a/.gn b/.gn index 7993d0d0f5..d495e665e2 100644 --- a/.gn +++ b/.gn @@ -25,6 +25,7 @@ check_targets = [ "//webrtc/api/*", "//webrtc/audio/*", "//webrtc/call/*", + "//webrtc/common_video/*", "//webrtc/modules/audio_coding/*", "//webrtc/modules/audio_conference_mixer/*", "//webrtc/modules/audio_device/*", diff --git a/webrtc/common_video/BUILD.gn b/webrtc/common_video/BUILD.gn index b3e6c4234f..152f98b089 100644 --- a/webrtc/common_video/BUILD.gn +++ b/webrtc/common_video/BUILD.gn @@ -57,6 +57,7 @@ rtc_static_library("common_video") { deps = [ "..:webrtc_common", + "../base:rtc_base", "../base:rtc_task_queue", "../system_wrappers", ] @@ -119,6 +120,8 @@ if (rtc_include_tests) { deps = [ ":common_video", + "../base:rtc_base", + "../base:rtc_base_approved", "../modules/video_capture:video_capture", "../system_wrappers:system_wrappers", "../test:test_main",