| 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/webrtc.gni") | 9 import("../../build/webrtc.gni") |
| 10 | 10 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 "source/coder.h", | 21 "source/coder.h", |
| 22 "source/file_player.cc", | 22 "source/file_player.cc", |
| 23 "source/file_recorder.cc", | 23 "source/file_recorder.cc", |
| 24 "source/helpers_android.cc", | 24 "source/helpers_android.cc", |
| 25 "source/helpers_ios.mm", | 25 "source/helpers_ios.mm", |
| 26 "source/jvm_android.cc", | 26 "source/jvm_android.cc", |
| 27 "source/process_thread_impl.cc", | 27 "source/process_thread_impl.cc", |
| 28 "source/process_thread_impl.h", | 28 "source/process_thread_impl.h", |
| 29 ] | 29 ] |
| 30 | 30 |
| 31 if (is_clang) { | 31 if (!build_with_chromium && is_clang) { |
| 32 # Suppress warnings from Chrome's Clang plugins. | 32 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 33 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | |
| 34 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 33 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 35 } | 34 } |
| 36 | 35 |
| 37 if (is_ios) { | 36 if (is_ios) { |
| 38 libs = [ "AVFoundation.framework" ] | 37 libs = [ "AVFoundation.framework" ] |
| 39 } | 38 } |
| 40 | 39 |
| 41 deps = [ | 40 deps = [ |
| 42 "../..:webrtc_common", | 41 "../..:webrtc_common", |
| 43 "../../base:rtc_task_queue", | 42 "../../base:rtc_task_queue", |
| 44 "../../common_audio", | 43 "../../common_audio", |
| 45 "../../system_wrappers", | 44 "../../system_wrappers", |
| 46 "../audio_coding", | 45 "../audio_coding", |
| 47 "../media_file", | 46 "../media_file", |
| 48 ] | 47 ] |
| 49 } | 48 } |
| OLD | NEW |