OLD | NEW |
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': [ |
11 { | 11 { |
12 'target_name': 'video_processing', | 12 'target_name': 'video_processing', |
13 'type': 'static_library', | 13 'type': 'static_library', |
14 'dependencies': [ | 14 'dependencies': [ |
15 'webrtc_utility', | 15 'webrtc_utility', |
16 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio', | 16 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio', |
17 '<(webrtc_root)/common_video/common_video.gyp:common_video', | 17 '<(webrtc_root)/common_video/common_video.gyp:common_video', |
18 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers', | 18 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers', |
19 ], | 19 ], |
20 'sources': [ | 20 'sources': [ |
21 'include/video_processing.h', | |
22 'include/video_processing_defines.h', | |
23 'frame_preprocessor.cc', | |
24 'frame_preprocessor.h', | |
25 'spatial_resampler.cc', | |
26 'spatial_resampler.h', | |
27 'video_decimator.cc', | |
28 'video_decimator.h', | |
29 'video_processing_impl.cc', | |
30 'video_processing_impl.h', | |
31 'video_denoiser.cc', | 21 'video_denoiser.cc', |
32 'video_denoiser.h', | 22 'video_denoiser.h', |
33 'util/denoiser_filter.cc', | 23 'util/denoiser_filter.cc', |
34 'util/denoiser_filter.h', | 24 'util/denoiser_filter.h', |
35 'util/denoiser_filter_c.cc', | 25 'util/denoiser_filter_c.cc', |
36 'util/denoiser_filter_c.h', | 26 'util/denoiser_filter_c.h', |
37 'util/noise_estimation.cc', | 27 'util/noise_estimation.cc', |
38 'util/noise_estimation.h', | 28 'util/noise_estimation.h', |
39 'util/skin_detection.cc', | 29 'util/skin_detection.cc', |
40 'util/skin_detection.h', | 30 'util/skin_detection.h', |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
81 'sources': [ | 71 'sources': [ |
82 'util/denoiser_filter_neon.cc', | 72 'util/denoiser_filter_neon.cc', |
83 'util/denoiser_filter_neon.h', | 73 'util/denoiser_filter_neon.h', |
84 ], | 74 ], |
85 }, | 75 }, |
86 ], | 76 ], |
87 }], | 77 }], |
88 ], | 78 ], |
89 } | 79 } |
90 | 80 |
OLD | NEW |