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

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

Issue 1269843005: Added DtlsCertificate, a ref counted object owning an SSLIdentity (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Trying to get iOS to compile Created 5 years, 4 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 { 9 {
10 'includes': [ '../build/common.gypi', ], 10 'includes': [ '../build/common.gypi', ],
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 '../overrides/webrtc/base/basictypes.h', 96 '../overrides/webrtc/base/basictypes.h',
97 '../overrides/webrtc/base/constructormagic.h', 97 '../overrides/webrtc/base/constructormagic.h',
98 ], 98 ],
99 }], 99 }],
100 ], 100 ],
101 }, 101 },
102 { 102 {
103 'target_name': 'rtc_base', 103 'target_name': 'rtc_base',
104 'type': 'static_library', 104 'type': 'static_library',
105 'dependencies': [ 105 'dependencies': [
106 '<(webrtc_root)/../talk/libjingle.gyp:libjingle_dtls',
Henrik Grunell WebRTC 2015/08/12 14:46:30 Hmm, should we really depend on anything in libjin
hbos 2015/08/14 14:09:39 Uhm, I don't know...? This was necessary after Dt
Henrik Grunell WebRTC 2015/08/18 14:25:11 I'm not up to date with webrtc-libjingle dependenc
106 '<(webrtc_root)/common.gyp:webrtc_common', 107 '<(webrtc_root)/common.gyp:webrtc_common',
107 'rtc_base_approved', 108 'rtc_base_approved',
108 ], 109 ],
109 'defines': [ 110 'defines': [
110 'FEATURE_ENABLE_SSL', 111 'FEATURE_ENABLE_SSL',
111 'LOGGING=1', 112 'LOGGING=1',
112 ], 113 ],
113 'sources': [ 114 'sources': [
114 'arraysize.h', 115 'arraysize.h',
115 'asyncfile.cc', 116 'asyncfile.cc',
(...skipping 623 matching lines...) Expand 10 before | Expand all | Expand 10 after
739 ['OS!="linux" and OS!="android"', { 740 ['OS!="linux" and OS!="android"', {
740 'sources!': [ 741 'sources!': [
741 'linux.cc', 742 'linux.cc',
742 'linux.h', 743 'linux.h',
743 ], 744 ],
744 }], 745 }],
745 ], 746 ],
746 }, 747 },
747 ], 748 ],
748 } 749 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698