| OLD | NEW |
| 1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2014 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 import("//build/config/arm.gni") | 9 import("//build/config/arm.gni") |
| 10 import("../../build/webrtc.gni") | 10 import("../../build/webrtc.gni") |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 "frame_preprocessor.cc", | 22 "frame_preprocessor.cc", |
| 23 "frame_preprocessor.h", | 23 "frame_preprocessor.h", |
| 24 "include/video_processing.h", | 24 "include/video_processing.h", |
| 25 "include/video_processing_defines.h", | 25 "include/video_processing_defines.h", |
| 26 "spatial_resampler.cc", | 26 "spatial_resampler.cc", |
| 27 "spatial_resampler.h", | 27 "spatial_resampler.h", |
| 28 "util/denoiser_filter.cc", | 28 "util/denoiser_filter.cc", |
| 29 "util/denoiser_filter.h", | 29 "util/denoiser_filter.h", |
| 30 "util/denoiser_filter_c.cc", | 30 "util/denoiser_filter_c.cc", |
| 31 "util/denoiser_filter_c.h", | 31 "util/denoiser_filter_c.h", |
| 32 "util/noise_estimation.cc", |
| 33 "util/noise_estimation.h", |
| 32 "util/skin_detection.cc", | 34 "util/skin_detection.cc", |
| 33 "util/skin_detection.h", | 35 "util/skin_detection.h", |
| 34 "video_decimator.cc", | 36 "video_decimator.cc", |
| 35 "video_decimator.h", | 37 "video_decimator.h", |
| 36 "video_denoiser.cc", | 38 "video_denoiser.cc", |
| 37 "video_denoiser.h", | 39 "video_denoiser.h", |
| 38 "video_processing_impl.cc", | 40 "video_processing_impl.cc", |
| 39 "video_processing_impl.h", | 41 "video_processing_impl.h", |
| 40 ] | 42 ] |
| 41 | 43 |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 "util/denoiser_filter_neon.h", | 94 "util/denoiser_filter_neon.h", |
| 93 ] | 95 ] |
| 94 if (current_cpu != "arm64") { | 96 if (current_cpu != "arm64") { |
| 95 configs -= [ "//build/config/compiler:compiler_arm_fpu" ] | 97 configs -= [ "//build/config/compiler:compiler_arm_fpu" ] |
| 96 cflags = [ "-mfpu=neon" ] | 98 cflags = [ "-mfpu=neon" ] |
| 97 } | 99 } |
| 98 configs += [ "../..:common_config" ] | 100 configs += [ "../..:common_config" ] |
| 99 public_configs = [ "../..:common_inherited_config" ] | 101 public_configs = [ "../..:common_inherited_config" ] |
| 100 } | 102 } |
| 101 } | 103 } |
| OLD | NEW |