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 'content_analysis.cc', | |
24 'content_analysis.h', | |
25 'frame_preprocessor.cc', | 23 'frame_preprocessor.cc', |
26 'frame_preprocessor.h', | 24 'frame_preprocessor.h', |
27 'spatial_resampler.cc', | 25 'spatial_resampler.cc', |
28 'spatial_resampler.h', | 26 'spatial_resampler.h', |
29 'video_decimator.cc', | 27 'video_decimator.cc', |
30 'video_decimator.h', | 28 'video_decimator.h', |
31 'video_processing_impl.cc', | 29 'video_processing_impl.cc', |
32 'video_processing_impl.h', | 30 'video_processing_impl.h', |
33 'video_denoiser.cc', | 31 'video_denoiser.cc', |
34 'video_denoiser.h', | 32 'video_denoiser.h', |
(...skipping 16 matching lines...) Expand all Loading... |
51 ], | 49 ], |
52 }, | 50 }, |
53 ], | 51 ], |
54 'conditions': [ | 52 'conditions': [ |
55 ['target_arch=="ia32" or target_arch=="x64"', { | 53 ['target_arch=="ia32" or target_arch=="x64"', { |
56 'targets': [ | 54 'targets': [ |
57 { | 55 { |
58 'target_name': 'video_processing_sse2', | 56 'target_name': 'video_processing_sse2', |
59 'type': 'static_library', | 57 'type': 'static_library', |
60 'sources': [ | 58 'sources': [ |
61 'content_analysis_sse2.cc', | |
62 'util/denoiser_filter_sse2.cc', | 59 'util/denoiser_filter_sse2.cc', |
63 'util/denoiser_filter_sse2.h', | 60 'util/denoiser_filter_sse2.h', |
64 ], | 61 ], |
65 'conditions': [ | 62 'conditions': [ |
66 ['os_posix==1 and OS!="mac"', { | 63 ['os_posix==1 and OS!="mac"', { |
67 'cflags': [ '-msse2', ], | 64 'cflags': [ '-msse2', ], |
68 }], | 65 }], |
69 ['OS=="mac"', { | 66 ['OS=="mac"', { |
70 'xcode_settings': { | 67 'xcode_settings': { |
71 'OTHER_CFLAGS': [ '-msse2', ], | 68 'OTHER_CFLAGS': [ '-msse2', ], |
(...skipping 12 matching lines...) Expand all Loading... |
84 'sources': [ | 81 'sources': [ |
85 'util/denoiser_filter_neon.cc', | 82 'util/denoiser_filter_neon.cc', |
86 'util/denoiser_filter_neon.h', | 83 'util/denoiser_filter_neon.h', |
87 ], | 84 ], |
88 }, | 85 }, |
89 ], | 86 ], |
90 }], | 87 }], |
91 ], | 88 ], |
92 } | 89 } |
93 | 90 |
OLD | NEW |