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

Side by Side Diff: webrtc/modules/video_processing/video_processing.gypi

Issue 1466763002: Standalone denoiser (off by default). (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 5 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 unified diff | Download patch
OLDNEW
1 # Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2011 The WebRTC project authors. All Rights Reserved.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license 3 # Use of this source code is governed by a BSD-style license
4 # that can be found in the LICENSE file in the root of the source 4 # that can be found in the LICENSE file in the root of the source
5 # tree. An additional intellectual property rights grant can be found 5 # tree. An additional intellectual property rights grant can be found
6 # in the file PATENTS. All contributing project authors may 6 # in the file PATENTS. All contributing project authors may
7 # be found in the AUTHORS file in the root of the source tree. 7 # be found in the AUTHORS file in the root of the source tree.
8 8
9 { 9 {
10 'targets': [ 10 'targets': [
(...skipping 18 matching lines...) Expand all
29 'deflickering.cc', 29 'deflickering.cc',
30 'deflickering.h', 30 'deflickering.h',
31 'frame_preprocessor.cc', 31 'frame_preprocessor.cc',
32 'frame_preprocessor.h', 32 'frame_preprocessor.h',
33 'spatial_resampler.cc', 33 'spatial_resampler.cc',
34 'spatial_resampler.h', 34 'spatial_resampler.h',
35 'video_decimator.cc', 35 'video_decimator.cc',
36 'video_decimator.h', 36 'video_decimator.h',
37 'video_processing_impl.cc', 37 'video_processing_impl.cc',
38 'video_processing_impl.h', 38 'video_processing_impl.h',
39 'video_denoiser.cc',
40 'video_denoiser.h',
41 'util/denoiser_filter.cc',
42 'util/denoiser_filter.h',
43 'util/skin_detection.cc',
44 'util/skin_detection.h',
39 ], 45 ],
40 'conditions': [ 46 'conditions': [
41 ['target_arch=="ia32" or target_arch=="x64"', { 47 ['target_arch=="ia32" or target_arch=="x64"', {
42 'dependencies': [ 'video_processing_sse2', ], 48 'dependencies': [ 'video_processing_sse2', ],
43 }], 49 }],
50 ['target_arch=="arm" or target_arch == "arm64"', {
51 'dependencies': [ 'video_processing_neon', ],
52 }],
44 ], 53 ],
45 }, 54 },
46 ], 55 ],
47 'conditions': [ 56 'conditions': [
48 ['target_arch=="ia32" or target_arch=="x64"', { 57 ['target_arch=="ia32" or target_arch=="x64"', {
49 'targets': [ 58 'targets': [
50 { 59 {
51 'target_name': 'video_processing_sse2', 60 'target_name': 'video_processing_sse2',
52 'type': 'static_library', 61 'type': 'static_library',
53 'sources': [ 62 'sources': [
54 'content_analysis_sse2.cc', 63 'content_analysis_sse2.cc',
64 'util/denoiser_filter_sse2.cc',
65 'util/denoiser_filter_sse2.h',
55 ], 66 ],
56 'conditions': [ 67 'conditions': [
57 ['os_posix==1 and OS!="mac"', { 68 ['os_posix==1 and OS!="mac"', {
58 'cflags': [ '-msse2', ], 69 'cflags': [ '-msse2', ],
59 }], 70 }],
60 ['OS=="mac"', { 71 ['OS=="mac"', {
61 'xcode_settings': { 72 'xcode_settings': {
62 'OTHER_CFLAGS': [ '-msse2', ], 73 'OTHER_CFLAGS': [ '-msse2', ],
63 }, 74 },
64 }], 75 }],
65 ], 76 ],
66 }, 77 },
67 ], 78 ],
68 }], 79 }],
80 ['target_arch=="arm" or target_arch == "arm64"', {
81 'targets': [
82 {
83 'target_name': 'video_processing_neon',
84 'type': 'static_library',
85 'includes': [ '../../build/arm_neon.gypi', ],
86 'sources': [
87 'util/denoiser_filter_neon.cc',
88 'util/denoiser_filter_neon.h',
89 ],
90 },
91 ],
92 }],
69 ], 93 ],
70 } 94 }
71 95
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698