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

Unified Diff: webrtc/modules/audio_device/BUILD.gn

Issue 1709853002: Add RTCAudioSession proxy class. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 10 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | webrtc/modules/audio_device/audio_device.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/modules/audio_device/BUILD.gn
diff --git a/webrtc/modules/audio_device/BUILD.gn b/webrtc/modules/audio_device/BUILD.gn
index 5897176845c10ddac38fdb748f14fac97ba31d14..307a615a4fa0e66495f8fbda0b7b229514d71784 100644
--- a/webrtc/modules/audio_device/BUILD.gn
+++ b/webrtc/modules/audio_device/BUILD.gn
@@ -17,6 +17,14 @@ config("audio_device_config") {
}
source_set("audio_device") {
+ deps = [
+ "../..:webrtc_common",
+ "../../base:rtc_base_approved",
+ "../../common_audio",
+ "../../system_wrappers",
+ "../utility",
+ ]
+
sources = [
"audio_device_buffer.cc",
"audio_device_buffer.h",
@@ -122,10 +130,14 @@ source_set("audio_device") {
]
}
if (is_ios) {
+ deps += [ "../../base:rtc_base_objc" ]
sources += [
"ios/audio_device_ios.h",
"ios/audio_device_ios.mm",
"ios/audio_device_not_implemented_ios.mm",
+ "ios/objc/RTCAudioSession+Private.h",
+ "ios/objc/RTCAudioSession.h",
+ "ios/objc/RTCAudioSession.mm",
]
cflags += [ "-fobjc-arc" ] # CLANG_ENABLE_OBJC_ARC = YES.
libs = [
@@ -175,12 +187,4 @@ source_set("audio_device") {
# See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
configs -= [ "//build/config/clang:find_bad_constructs" ]
}
-
- deps = [
- "../..:webrtc_common",
- "../../base:rtc_base_approved",
- "../../common_audio",
- "../../system_wrappers",
- "../utility",
- ]
}
« no previous file with comments | « no previous file | webrtc/modules/audio_device/audio_device.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698