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

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

Issue 2109133003: Added empty directory with myself as owner for new mixer. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Renamed to avoid compilation crashes and added build file. Created 4 years, 5 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 | webrtc/modules/audio_mixer/BUILD.gn » ('j') | 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) 2016 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2016 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 import("audio_coding/audio_coding.gni") 10 import("audio_coding/audio_coding.gni")
11 import("//testing/test.gni") 11 import("//testing/test.gni")
12 12
13 declare_args() { 13 declare_args() {
14 # Desktop capturer is supported only on Windows, OSX and Linux. 14 # Desktop capturer is supported only on Windows, OSX and Linux.
15 rtc_desktop_capture_supported = is_win || is_mac || is_linux 15 rtc_desktop_capture_supported = is_win || is_mac || is_linux
16 } 16 }
17 17
18 group("modules") { 18 group("modules") {
19 deps = [ 19 deps = [
20 "audio_coding", 20 "audio_coding",
21 "audio_conference_mixer", 21 "audio_conference_mixer",
22 "audio_device", 22 "audio_device",
23 "audio_mixer",
23 "audio_processing", 24 "audio_processing",
24 "bitrate_controller", 25 "bitrate_controller",
25 "desktop_capture", 26 "desktop_capture",
26 "media_file", 27 "media_file",
27 "rtp_rtcp", 28 "rtp_rtcp",
28 "utility", 29 "utility",
29 "video_coding", 30 "video_coding",
30 "video_processing", 31 "video_processing",
31 ] 32 ]
32 } 33 }
(...skipping 498 matching lines...) Expand 10 before | Expand all | Expand 10 after
531 "audio_device/ios/objc/RTCAudioSessionTest.mm", 532 "audio_device/ios/objc/RTCAudioSessionTest.mm",
532 "video_coding/codecs/h264/h264_video_toolbox_nalu_unittest.cc", 533 "video_coding/codecs/h264/h264_video_toolbox_nalu_unittest.cc",
533 ] 534 ]
534 535
535 ldflags = [ "-ObjC" ] 536 ldflags = [ "-ObjC" ]
536 537
537 # TODO(kjellander): Mac bundle files. 538 # TODO(kjellander): Mac bundle files.
538 } 539 }
539 } 540 }
540 } 541 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/modules/audio_mixer/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698