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

Side by Side Diff: webrtc/pc/pc.gyp

Issue 2037983002: Reland of GN: Add BUILD.gn files for webrtc/{api,media,libjingle,p2p,pc} (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: New changes Created 4 years, 6 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/pc/BUILD.gn ('k') | 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) 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',
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', {
28 'sources': [
29 'externalhmac.h',
30 'externalhmac.cc',
31 ],
32 }],
27 ['build_libsrtp==1', { 33 ['build_libsrtp==1', {
28 'dependencies': [ 34 'dependencies': [
29 '<(DEPTH)/third_party/libsrtp/libsrtp.gyp:libsrtp', 35 '<(DEPTH)/third_party/libsrtp/libsrtp.gyp:libsrtp',
30 ], 36 ],
31 }], 37 }],
32 ], 38 ],
33 'defines': [ 39 'defines': [
34 '<@(rtc_pc_defines)', 40 '<@(rtc_pc_defines)',
35 ], 41 ],
36 'include_dirs': [ 42 'include_dirs': [
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 'sources': [ 137 'sources': [
132 'rtc_pc_unittests.isolate', 138 'rtc_pc_unittests.isolate',
133 ], 139 ],
134 }, 140 },
135 ], 141 ],
136 }], 142 }],
137 ], # conditions 143 ], # conditions
138 }], # include_tests==1 144 }], # include_tests==1
139 ], # conditions 145 ], # conditions
140 } 146 }
OLDNEW
« no previous file with comments | « webrtc/pc/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698