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', | 21 'include/video_processing.h', |
22 'include/video_processing_defines.h', | 22 'include/video_processing_defines.h', |
23 'brighten.cc', | |
24 'brighten.h', | |
25 'brightness_detection.cc', | 23 'brightness_detection.cc', |
26 'brightness_detection.h', | 24 'brightness_detection.h', |
27 'content_analysis.cc', | 25 'content_analysis.cc', |
28 'content_analysis.h', | 26 'content_analysis.h', |
29 'deflickering.cc', | 27 'deflickering.cc', |
30 'deflickering.h', | 28 'deflickering.h', |
31 'frame_preprocessor.cc', | 29 'frame_preprocessor.cc', |
32 'frame_preprocessor.h', | 30 'frame_preprocessor.h', |
33 'spatial_resampler.cc', | 31 'spatial_resampler.cc', |
34 'spatial_resampler.h', | 32 'spatial_resampler.h', |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 'sources': [ | 86 'sources': [ |
89 'util/denoiser_filter_neon.cc', | 87 'util/denoiser_filter_neon.cc', |
90 'util/denoiser_filter_neon.h', | 88 'util/denoiser_filter_neon.h', |
91 ], | 89 ], |
92 }, | 90 }, |
93 ], | 91 ], |
94 }], | 92 }], |
95 ], | 93 ], |
96 } | 94 } |
97 | 95 |
OLD | NEW |