Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(29)

Unified Diff: webrtc/modules/video_processing/BUILD.gn

Issue 2595543002: Refactor webrtc/modules/video_processing for GN check (Closed)
Patch Set: Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « .gn ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/modules/video_processing/BUILD.gn
diff --git a/webrtc/modules/video_processing/BUILD.gn b/webrtc/modules/video_processing/BUILD.gn
index b1ab8ecc5e38f638af207f74bb4b2aee33478c01..d6dcc3432fa9c38494dd429d87713abdc3bf31fd 100644
--- a/webrtc/modules/video_processing/BUILD.gn
+++ b/webrtc/modules/video_processing/BUILD.gn
@@ -26,6 +26,7 @@ rtc_static_library("video_processing") {
]
deps = [
+ "../../base:rtc_base_approved",
"../../common_audio",
"../../common_video",
"../../modules/utility",
@@ -47,10 +48,19 @@ rtc_static_library("video_processing") {
if (build_video_processing_sse2) {
rtc_static_library("video_processing_sse2") {
sources = [
+ "util/denoiser_filter.cc",
kjellander_webrtc 2016/12/20 13:25:19 This looks incorrect. These files are already list
mbonadei 2016/12/20 13:39:43 Yes, that's correct. But `util/denoiser_filter_sse
kjellander_webrtc 2016/12/20 14:00:21 I see. It might be better to let the code owners o
mbonadei 2016/12/20 15:54:28 Yes, unfortunately it is not possible to remove it
+ "util/denoiser_filter.h",
+ "util/denoiser_filter_c.cc",
+ "util/denoiser_filter_c.h",
"util/denoiser_filter_sse2.cc",
"util/denoiser_filter_sse2.h",
]
+ deps = [
+ "../../base:rtc_base_approved",
+ "../../system_wrappers",
+ ]
+
if (!build_with_chromium && is_clang) {
# Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
« no previous file with comments | « .gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698