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': [ |
(...skipping 18 matching lines...) Loading... |
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/denoiser_filter_c.cc', |
| 44 'util/denoiser_filter_c.h', |
| 45 'util/skin_detection.cc', |
| 46 'util/skin_detection.h', |
39 ], | 47 ], |
40 'conditions': [ | 48 'conditions': [ |
41 ['target_arch=="ia32" or target_arch=="x64"', { | 49 ['target_arch=="ia32" or target_arch=="x64"', { |
42 'dependencies': [ 'video_processing_sse2', ], | 50 'dependencies': [ 'video_processing_sse2', ], |
43 }], | 51 }], |
| 52 ['target_arch=="arm" or target_arch == "arm64"', { |
| 53 'dependencies': [ 'video_processing_neon', ], |
| 54 }], |
44 ], | 55 ], |
45 }, | 56 }, |
46 ], | 57 ], |
47 'conditions': [ | 58 'conditions': [ |
48 ['target_arch=="ia32" or target_arch=="x64"', { | 59 ['target_arch=="ia32" or target_arch=="x64"', { |
49 'targets': [ | 60 'targets': [ |
50 { | 61 { |
51 'target_name': 'video_processing_sse2', | 62 'target_name': 'video_processing_sse2', |
52 'type': 'static_library', | 63 'type': 'static_library', |
53 'sources': [ | 64 'sources': [ |
54 'content_analysis_sse2.cc', | 65 'content_analysis_sse2.cc', |
| 66 'util/denoiser_filter_sse2.cc', |
| 67 'util/denoiser_filter_sse2.h', |
55 ], | 68 ], |
56 'conditions': [ | 69 'conditions': [ |
57 ['os_posix==1 and OS!="mac"', { | 70 ['os_posix==1 and OS!="mac"', { |
58 'cflags': [ '-msse2', ], | 71 'cflags': [ '-msse2', ], |
59 }], | 72 }], |
60 ['OS=="mac"', { | 73 ['OS=="mac"', { |
61 'xcode_settings': { | 74 'xcode_settings': { |
62 'OTHER_CFLAGS': [ '-msse2', ], | 75 'OTHER_CFLAGS': [ '-msse2', ], |
63 }, | 76 }, |
64 }], | 77 }], |
65 ], | 78 ], |
66 }, | 79 }, |
67 ], | 80 ], |
68 }], | 81 }], |
| 82 ['target_arch=="arm" or target_arch == "arm64"', { |
| 83 'targets': [ |
| 84 { |
| 85 'target_name': 'video_processing_neon', |
| 86 'type': 'static_library', |
| 87 'includes': [ '../../build/arm_neon.gypi', ], |
| 88 'sources': [ |
| 89 'util/denoiser_filter_neon.cc', |
| 90 'util/denoiser_filter_neon.h', |
| 91 ], |
| 92 }, |
| 93 ], |
| 94 }], |
69 ], | 95 ], |
70 } | 96 } |
71 | 97 |
OLD | NEW |