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

Unified Diff: webrtc/modules/video_processing/video_processing.gypi

Issue 2509703002: Remove all references to GYP (Closed)
Patch Set: Rebased Created 4 years, 1 month 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 | « webrtc/modules/video_processing/OWNERS ('k') | webrtc/p2p/OWNERS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/modules/video_processing/video_processing.gypi
diff --git a/webrtc/modules/video_processing/video_processing.gypi b/webrtc/modules/video_processing/video_processing.gypi
deleted file mode 100644
index 3e90fd215710fd6b75117d4c3a730d3ef1a72646..0000000000000000000000000000000000000000
--- a/webrtc/modules/video_processing/video_processing.gypi
+++ /dev/null
@@ -1,90 +0,0 @@
-# Copyright (c) 2011 The WebRTC project authors. All Rights Reserved.
-#
-# Use of this source code is governed by a BSD-style license
-# that can be found in the LICENSE file in the root of the source
-# tree. An additional intellectual property rights grant can be found
-# in the file PATENTS. All contributing project authors may
-# be found in the AUTHORS file in the root of the source tree.
-
-{
- 'targets': [
- {
- 'target_name': 'video_processing',
- 'type': 'static_library',
- 'dependencies': [
- 'webrtc_utility',
- '<(webrtc_root)/common_audio/common_audio.gyp:common_audio',
- '<(webrtc_root)/common_video/common_video.gyp:common_video',
- '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers',
- ],
- 'sources': [
- 'include/video_processing.h',
- 'include/video_processing_defines.h',
- 'frame_preprocessor.cc',
- 'frame_preprocessor.h',
- 'spatial_resampler.cc',
- 'spatial_resampler.h',
- 'video_decimator.cc',
- 'video_decimator.h',
- 'video_processing_impl.cc',
- 'video_processing_impl.h',
- 'video_denoiser.cc',
- 'video_denoiser.h',
- 'util/denoiser_filter.cc',
- 'util/denoiser_filter.h',
- 'util/denoiser_filter_c.cc',
- 'util/denoiser_filter_c.h',
- 'util/noise_estimation.cc',
- 'util/noise_estimation.h',
- 'util/skin_detection.cc',
- 'util/skin_detection.h',
- ],
- 'conditions': [
- ['target_arch=="ia32" or target_arch=="x64"', {
- 'dependencies': [ 'video_processing_sse2', ],
- }],
- ['target_arch=="arm" or target_arch == "arm64"', {
- 'dependencies': [ 'video_processing_neon', ],
- }],
- ],
- },
- ],
- 'conditions': [
- ['target_arch=="ia32" or target_arch=="x64"', {
- 'targets': [
- {
- 'target_name': 'video_processing_sse2',
- 'type': 'static_library',
- 'sources': [
- 'util/denoiser_filter_sse2.cc',
- 'util/denoiser_filter_sse2.h',
- ],
- 'conditions': [
- ['os_posix==1 and OS!="mac"', {
- 'cflags': [ '-msse2', ],
- }],
- ['OS=="mac"', {
- 'xcode_settings': {
- 'OTHER_CFLAGS': [ '-msse2', ],
- },
- }],
- ],
- },
- ],
- }],
- ['target_arch=="arm" or target_arch == "arm64"', {
- 'targets': [
- {
- 'target_name': 'video_processing_neon',
- 'type': 'static_library',
- 'includes': [ '../../build/arm_neon.gypi', ],
- 'sources': [
- 'util/denoiser_filter_neon.cc',
- 'util/denoiser_filter_neon.h',
- ],
- },
- ],
- }],
- ],
-}
-
« no previous file with comments | « webrtc/modules/video_processing/OWNERS ('k') | webrtc/p2p/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698