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

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

Issue 2273713003: Make dependency of audio_device of ApplicationServices explicit. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 4 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 unified diff | Download patch
« no previous file with comments | « no previous file | 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 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 sources += [ 130 sources += [
131 "mac/audio_device_mac.cc", 131 "mac/audio_device_mac.cc",
132 "mac/audio_device_mac.h", 132 "mac/audio_device_mac.h",
133 "mac/audio_mixer_manager_mac.cc", 133 "mac/audio_mixer_manager_mac.cc",
134 "mac/audio_mixer_manager_mac.h", 134 "mac/audio_mixer_manager_mac.h",
135 "mac/portaudio/pa_memorybarrier.h", 135 "mac/portaudio/pa_memorybarrier.h",
136 "mac/portaudio/pa_ringbuffer.c", 136 "mac/portaudio/pa_ringbuffer.c",
137 "mac/portaudio/pa_ringbuffer.h", 137 "mac/portaudio/pa_ringbuffer.h",
138 ] 138 ]
139 libs = [ 139 libs = [
140 # Needed for CoreGraphics:
141 "ApplicationServices.framework",
142
140 "AudioToolbox.framework", 143 "AudioToolbox.framework",
141 "CoreAudio.framework", 144 "CoreAudio.framework",
142 145
143 # Needed for CGEventSourceKeyState in audio_device_mac.cc: 146 # Needed for CGEventSourceKeyState in audio_device_mac.cc:
144 "CoreGraphics.framework", 147 "CoreGraphics.framework",
145 ] 148 ]
146 } 149 }
147 if (is_ios) { 150 if (is_ios) {
148 public_deps = [ 151 public_deps = [
149 "../../sdk:rtc_sdk_common_objc", 152 "../../sdk:rtc_sdk_common_objc",
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
236 "//build/config/sanitizers:deps", 239 "//build/config/sanitizers:deps",
237 "//testing/gtest", 240 "//testing/gtest",
238 ] 241 ]
239 configs += [ "../..:common_config" ] 242 configs += [ "../..:common_config" ]
240 public_configs = [ 243 public_configs = [
241 "../..:common_inherited_config", 244 "../..:common_inherited_config",
242 ":audio_device_config", 245 ":audio_device_config",
243 ] 246 ]
244 } 247 }
245 } 248 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698