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

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

Issue 3007763002: Move array_view.h to webrtc/api/ (Closed)
Patch Set: rebase Created 3 years, 3 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
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("../../webrtc.gni") 9 import("../../webrtc.gni")
10 10
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 ] 44 ]
45 } 45 }
46 } 46 }
47 47
48 rtc_static_library("audio_device") { 48 rtc_static_library("audio_device") {
49 public_configs = [ ":audio_device_config" ] 49 public_configs = [ ":audio_device_config" ]
50 50
51 deps = [ 51 deps = [
52 "..:module_api", 52 "..:module_api",
53 "../..:webrtc_common", 53 "../..:webrtc_common",
54 "../../api:array_view",
54 "../../common_audio", 55 "../../common_audio",
55 "../../rtc_base:rtc_base_approved", 56 "../../rtc_base:rtc_base_approved",
56 "../../rtc_base:rtc_task_queue", 57 "../../rtc_base:rtc_task_queue",
57 "../../system_wrappers", 58 "../../system_wrappers",
58 "../utility", 59 "../utility",
59 ] 60 ]
60 61
61 sources = [ 62 sources = [
62 "audio_device_buffer.cc", 63 "audio_device_buffer.cc",
63 "audio_device_buffer.h", 64 "audio_device_buffer.h",
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after
274 # cover (which would be confusing to read and hard to maintain). 275 # cover (which would be confusing to read and hard to maintain).
275 if (!is_android && !is_ios) { 276 if (!is_android && !is_ios) {
276 visibility = [ "..:modules_unittests" ] 277 visibility = [ "..:modules_unittests" ]
277 } 278 }
278 sources = [ 279 sources = [
279 "fine_audio_buffer_unittest.cc", 280 "fine_audio_buffer_unittest.cc",
280 ] 281 ]
281 deps = [ 282 deps = [
282 ":audio_device", 283 ":audio_device",
283 ":mock_audio_device", 284 ":mock_audio_device",
285 "../../api:array_view",
284 "../../rtc_base:rtc_base_approved", 286 "../../rtc_base:rtc_base_approved",
285 "../../system_wrappers:system_wrappers", 287 "../../system_wrappers:system_wrappers",
286 "../../test:test_support", 288 "../../test:test_support",
287 "../utility:utility", 289 "../utility:utility",
288 "//testing/gmock", 290 "//testing/gmock",
289 ] 291 ]
290 if (is_linux || is_mac || is_win) { 292 if (is_linux || is_mac || is_win) {
291 sources += [ "audio_device_unittest.cc" ] 293 sources += [ "audio_device_unittest.cc" ]
292 } 294 }
293 if (is_android) { 295 if (is_android) {
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
331 "android/java/src/org/webrtc/voiceengine/WebRtcAudioUtils.java", 333 "android/java/src/org/webrtc/voiceengine/WebRtcAudioUtils.java",
332 ] 334 ]
333 deps = [ 335 deps = [
334 "../../rtc_base:base_java", 336 "../../rtc_base:base_java",
335 ] 337 ]
336 338
337 # TODO(sakal): Fix build hooks crbug.com/webrtc/8148 339 # TODO(sakal): Fix build hooks crbug.com/webrtc/8148
338 no_build_hooks = true 340 no_build_hooks = true
339 } 341 }
340 } 342 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698