Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(464)

Side by Side Diff: webrtc/modules/audio_device/BUILD.gn

Issue 1471663002: GN: Fix iOS error in audio_device and rtc_base (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« webrtc/base/BUILD.gn ('K') | « webrtc/base/BUILD.gn ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« webrtc/base/BUILD.gn ('K') | « webrtc/base/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698