| 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 } | 42 } |
| 43 if (is_mac) { | 43 if (is_mac) { |
| 44 include_dirs += [ "mac" ] | 44 include_dirs += [ "mac" ] |
| 45 } | 45 } |
| 46 if (is_win) { | 46 if (is_win) { |
| 47 include_dirs += [ "win" ] | 47 include_dirs += [ "win" ] |
| 48 } | 48 } |
| 49 if (is_android) { | 49 if (is_android) { |
| 50 include_dirs += [ "android" ] | 50 include_dirs += [ "android" ] |
| 51 } | 51 } |
| 52 defines = [] |
| 52 if (rtc_include_internal_audio_device) { | 53 if (rtc_include_internal_audio_device) { |
| 53 defines += [ "WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE" ] | 54 defines += [ "WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE" ] |
| 54 sources += [ | 55 sources += [ |
| 55 "android/audio_device_template.h", | 56 "android/audio_device_template.h", |
| 56 "android/audio_manager.cc", | 57 "android/audio_manager.cc", |
| 57 "android/audio_manager.h", | 58 "android/audio_manager.h", |
| 58 "android/audio_record_jni.cc", | 59 "android/audio_record_jni.cc", |
| 59 "android/audio_record_jni.h", | 60 "android/audio_record_jni.h", |
| 60 "android/audio_track_jni.cc", | 61 "android/audio_track_jni.cc", |
| 61 "android/audio_track_jni.h", | 62 "android/audio_track_jni.h", |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 } | 160 } |
| 160 | 161 |
| 161 deps = [ | 162 deps = [ |
| 162 "../..:webrtc_common", | 163 "../..:webrtc_common", |
| 163 "../../base:rtc_base_approved", | 164 "../../base:rtc_base_approved", |
| 164 "../../common_audio", | 165 "../../common_audio", |
| 165 "../../system_wrappers", | 166 "../../system_wrappers", |
| 166 "../utility", | 167 "../utility", |
| 167 ] | 168 ] |
| 168 } | 169 } |
| OLD | NEW |