| 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("../webrtc.gni") | 9 import("../webrtc.gni") |
| 10 | 10 |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 } | 47 } |
| 48 | 48 |
| 49 rtc_static_library("file_recorder") { | 49 rtc_static_library("file_recorder") { |
| 50 sources = [ | 50 sources = [ |
| 51 "file_recorder.cc", | 51 "file_recorder.cc", |
| 52 "file_recorder.h", | 52 "file_recorder.h", |
| 53 ] | 53 ] |
| 54 deps = [ | 54 deps = [ |
| 55 ":audio_coder", | 55 ":audio_coder", |
| 56 "..:webrtc_common", | 56 "..:webrtc_common", |
| 57 "../audio/utility:audio_frame_operations", |
| 57 "../base:rtc_base_approved", | 58 "../base:rtc_base_approved", |
| 58 "../common_audio", | 59 "../common_audio", |
| 59 "../modules/media_file:media_file", | 60 "../modules/media_file:media_file", |
| 60 "../system_wrappers", | 61 "../system_wrappers", |
| 61 ] | 62 ] |
| 62 | 63 |
| 63 if (!build_with_chromium && is_clang) { | 64 if (!build_with_chromium && is_clang) { |
| 64 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 65 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 65 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 66 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 66 } | 67 } |
| (...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 307 ] | 308 ] |
| 308 } | 309 } |
| 309 | 310 |
| 310 if (!build_with_chromium && is_clang) { | 311 if (!build_with_chromium && is_clang) { |
| 311 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163)
. | 312 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163)
. |
| 312 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 313 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 313 } | 314 } |
| 314 } | 315 } |
| 315 } | 316 } |
| 316 } | 317 } |
| OLD | NEW |