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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 defines = [] |
| 53 cflags = [] |
53 if (rtc_include_internal_audio_device) { | 54 if (rtc_include_internal_audio_device) { |
54 defines += [ "WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE" ] | 55 defines += [ "WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE" ] |
55 sources += [ | 56 sources += [ |
56 "android/audio_device_template.h", | 57 "android/audio_device_template.h", |
57 "android/audio_manager.cc", | 58 "android/audio_manager.cc", |
58 "android/audio_manager.h", | 59 "android/audio_manager.h", |
59 "android/audio_record_jni.cc", | 60 "android/audio_record_jni.cc", |
60 "android/audio_record_jni.h", | 61 "android/audio_record_jni.h", |
61 "android/audio_track_jni.cc", | 62 "android/audio_track_jni.cc", |
62 "android/audio_track_jni.h", | 63 "android/audio_track_jni.h", |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
160 } | 161 } |
161 | 162 |
162 deps = [ | 163 deps = [ |
163 "../..:webrtc_common", | 164 "../..:webrtc_common", |
164 "../../base:rtc_base_approved", | 165 "../../base:rtc_base_approved", |
165 "../../common_audio", | 166 "../../common_audio", |
166 "../../system_wrappers", | 167 "../../system_wrappers", |
167 "../utility", | 168 "../utility", |
168 ] | 169 ] |
169 } | 170 } |
OLD | NEW |