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 22 matching lines...) Expand all Loading... |
33 'video_decimator.cc', | 33 'video_decimator.cc', |
34 'video_decimator.h', | 34 'video_decimator.h', |
35 'video_processing_impl.cc', | 35 'video_processing_impl.cc', |
36 'video_processing_impl.h', | 36 'video_processing_impl.h', |
37 'video_denoiser.cc', | 37 'video_denoiser.cc', |
38 'video_denoiser.h', | 38 'video_denoiser.h', |
39 'util/denoiser_filter.cc', | 39 'util/denoiser_filter.cc', |
40 'util/denoiser_filter.h', | 40 'util/denoiser_filter.h', |
41 'util/denoiser_filter_c.cc', | 41 'util/denoiser_filter_c.cc', |
42 'util/denoiser_filter_c.h', | 42 'util/denoiser_filter_c.h', |
| 43 'util/noise_estimation.cc', |
| 44 'util/noise_estimation.h', |
43 'util/skin_detection.cc', | 45 'util/skin_detection.cc', |
44 'util/skin_detection.h', | 46 'util/skin_detection.h', |
45 ], | 47 ], |
46 'conditions': [ | 48 'conditions': [ |
47 ['target_arch=="ia32" or target_arch=="x64"', { | 49 ['target_arch=="ia32" or target_arch=="x64"', { |
48 'dependencies': [ 'video_processing_sse2', ], | 50 'dependencies': [ 'video_processing_sse2', ], |
49 }], | 51 }], |
50 ['target_arch=="arm" or target_arch == "arm64"', { | 52 ['target_arch=="arm" or target_arch == "arm64"', { |
51 'dependencies': [ 'video_processing_neon', ], | 53 'dependencies': [ 'video_processing_neon', ], |
52 }], | 54 }], |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 'sources': [ | 88 'sources': [ |
87 'util/denoiser_filter_neon.cc', | 89 'util/denoiser_filter_neon.cc', |
88 'util/denoiser_filter_neon.h', | 90 'util/denoiser_filter_neon.h', |
89 ], | 91 ], |
90 }, | 92 }, |
91 ], | 93 ], |
92 }], | 94 }], |
93 ], | 95 ], |
94 } | 96 } |
95 | 97 |
OLD | NEW |