| 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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 104     "vad/webrtc_vad.c", | 104     "vad/webrtc_vad.c", | 
| 105     "wav_file.cc", | 105     "wav_file.cc", | 
| 106     "wav_file.h", | 106     "wav_file.h", | 
| 107     "wav_header.cc", | 107     "wav_header.cc", | 
| 108     "wav_header.h", | 108     "wav_header.h", | 
| 109     "window_generator.cc", | 109     "window_generator.cc", | 
| 110     "window_generator.h", | 110     "window_generator.h", | 
| 111   ] | 111   ] | 
| 112 | 112 | 
| 113   deps = [ | 113   deps = [ | 
| 114     "../base:rtc_analytics", |  | 
| 115     "../system_wrappers", | 114     "../system_wrappers", | 
| 116   ] | 115   ] | 
| 117 | 116 | 
| 118   defines = [] | 117   defines = [] | 
| 119   if (rtc_use_openmax_dl) { | 118   if (rtc_use_openmax_dl) { | 
| 120     sources += [ | 119     sources += [ | 
| 121       "real_fourier_openmax.cc", | 120       "real_fourier_openmax.cc", | 
| 122       "real_fourier_openmax.h", | 121       "real_fourier_openmax.h", | 
| 123     ] | 122     ] | 
| 124     defines += [ "RTC_USE_OPENMAX_DL" ] | 123     defines += [ "RTC_USE_OPENMAX_DL" ] | 
| (...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 294       "//testing/gtest", | 293       "//testing/gtest", | 
| 295     ] | 294     ] | 
| 296 | 295 | 
| 297     if (is_android) { | 296     if (is_android) { | 
| 298       deps += [ "//testing/android/native_test:native_test_support" ] | 297       deps += [ "//testing/android/native_test:native_test_support" ] | 
| 299 | 298 | 
| 300       shard_timeout = 900 | 299       shard_timeout = 900 | 
| 301     } | 300     } | 
| 302   } | 301   } | 
| 303 } | 302 } | 
| OLD | NEW | 
|---|