OLD | NEW |
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 { | 9 { |
10 'includes': ['../build/common.gypi'], | 10 'includes': ['../build/common.gypi'], |
11 'variables': { | 11 'variables': { |
12 'rtc_pc_defines': [ | 12 'rtc_pc_defines': [ |
13 'SRTP_RELATIVE_PATH', | 13 'SRTP_RELATIVE_PATH', |
14 'HAVE_SCTP', | 14 'HAVE_SCTP', |
15 'HAVE_SRTP', | 15 'HAVE_SRTP', |
16 ], | 16 ], |
17 }, | 17 }, |
18 'targets': [ | 18 'targets': [ |
19 { | 19 { |
20 'target_name': 'rtc_pc', | 20 'target_name': 'rtc_pc', |
21 'type': 'static_library', | 21 'type': 'static_library', |
22 'dependencies': [ | 22 'dependencies': [ |
23 '<(webrtc_root)/base/base.gyp:rtc_base', | 23 '<(webrtc_root)/base/base.gyp:rtc_base_approved', |
24 '<(webrtc_root)/media/media.gyp:rtc_media', | 24 '<(webrtc_root)/media/media.gyp:rtc_media', |
25 ], | 25 ], |
26 'conditions': [ | 26 'conditions': [ |
27 ['build_with_chromium==1', { | 27 ['build_with_chromium==1', { |
28 'sources': [ | 28 'sources': [ |
29 'externalhmac.h', | 29 'externalhmac.h', |
30 'externalhmac.cc', | 30 'externalhmac.cc', |
31 ], | 31 ], |
32 }], | 32 }], |
33 ['build_libsrtp==1', { | 33 ['build_libsrtp==1', { |
(...skipping 24 matching lines...) Expand all Loading... |
58 'channel.cc', | 58 'channel.cc', |
59 'channel.h', | 59 'channel.h', |
60 'channelmanager.cc', | 60 'channelmanager.cc', |
61 'channelmanager.h', | 61 'channelmanager.h', |
62 'currentspeakermonitor.cc', | 62 'currentspeakermonitor.cc', |
63 'currentspeakermonitor.h', | 63 'currentspeakermonitor.h', |
64 'mediamonitor.cc', | 64 'mediamonitor.cc', |
65 'mediamonitor.h', | 65 'mediamonitor.h', |
66 'mediasession.cc', | 66 'mediasession.cc', |
67 'mediasession.h', | 67 'mediasession.h', |
68 'mediasink.h', | |
69 'rtcpmuxfilter.cc', | 68 'rtcpmuxfilter.cc', |
70 'rtcpmuxfilter.h', | 69 'rtcpmuxfilter.h', |
71 'srtpfilter.cc', | 70 'srtpfilter.cc', |
72 'srtpfilter.h', | 71 'srtpfilter.h', |
73 'voicechannel.h', | 72 'voicechannel.h', |
74 ], | 73 ], |
75 }, # target rtc_pc | 74 }, # target rtc_pc |
76 ], # targets | 75 ], # targets |
77 } | 76 } |
OLD | NEW |