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

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

Issue 2344623002: GN: Change group deps to public_deps. (Closed)
Patch Set: Created 4 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
« no previous file with comments | « webrtc/media/BUILD.gn ('k') | webrtc/p2p/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 11
12 declare_args() { 12 declare_args() {
13 # Desktop capturer is supported only on Windows, OSX and Linux. 13 # Desktop capturer is supported only on Windows, OSX and Linux.
14 rtc_desktop_capture_supported = is_win || is_mac || is_linux 14 rtc_desktop_capture_supported = is_win || is_mac || is_linux
15 } 15 }
16 16
17 group("modules") { 17 group("modules") {
18 deps = [ 18 public_deps = [
19 "audio_coding", 19 "audio_coding",
20 "audio_conference_mixer", 20 "audio_conference_mixer",
21 "audio_device", 21 "audio_device",
22 "audio_mixer", 22 "audio_mixer",
23 "audio_processing", 23 "audio_processing",
24 "bitrate_controller", 24 "bitrate_controller",
25 "desktop_capture", 25 "desktop_capture",
26 "media_file", 26 "media_file",
27 "rtp_rtcp", 27 "rtp_rtcp",
28 "utility", 28 "utility",
(...skipping 639 matching lines...) Expand 10 before | Expand all | Expand 10 after
668 sources += [ 668 sources += [
669 "audio_device/ios/audio_device_unittest_ios.cc", 669 "audio_device/ios/audio_device_unittest_ios.cc",
670 "audio_device/ios/objc/RTCAudioSessionTest.mm", 670 "audio_device/ios/objc/RTCAudioSessionTest.mm",
671 "video_coding/codecs/h264/h264_video_toolbox_nalu_unittest.cc", 671 "video_coding/codecs/h264/h264_video_toolbox_nalu_unittest.cc",
672 ] 672 ]
673 673
674 ldflags = [ "-ObjC" ] 674 ldflags = [ "-ObjC" ]
675 } 675 }
676 } 676 }
677 } 677 }
OLDNEW
« no previous file with comments | « webrtc/media/BUILD.gn ('k') | webrtc/p2p/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698