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

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

Issue 1499653003: Add implementation and tests for RTCIceServer (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Remove Mac from webrtc_tests Created 5 years 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 15 matching lines...) Expand all
26 # of some settings pulled down from Chromium. 26 # of some settings pulled down from Chromium.
27 ['OS=="ios"', { 27 ['OS=="ios"', {
28 'targets': [ 28 'targets': [
29 { 29 {
30 'target_name': 'rtc_base_objc', 30 'target_name': 'rtc_base_objc',
31 'type': 'static_library', 31 'type': 'static_library',
32 'dependencies': [ 32 'dependencies': [
33 'rtc_base', 33 'rtc_base',
34 ], 34 ],
35 'sources': [ 35 'sources': [
36 'objc/RTCCameraPreviewView.h', 36 'objc/NSString+StdString.h',
37 'objc/RTCCameraPreviewView.m', 37 'objc/NSString+StdString.mm',
38 'objc/RTCDispatcher.h', 38 'objc/RTCDispatcher.h',
39 'objc/RTCDispatcher.m', 39 'objc/RTCDispatcher.m',
40 'objc/RTCLogging.h', 40 'objc/RTCLogging.h',
41 'objc/RTCLogging.mm', 41 'objc/RTCLogging.mm',
42 ], 42 ],
43 'conditions': [
44 ['OS=="ios"', {
45 'sources': [
46 'objc/RTCCameraPreviewView.h',
47 'objc/RTCCameraPreviewView.m',
48 ],
49 'all_dependent_settings': {
50 'xcode_settings': {
51 'OTHER_LDFLAGS': [
52 '-framework AVFoundation',
53 ],
54 },
55 },
56 }],
57 ],
43 'xcode_settings': { 58 'xcode_settings': {
44 'CLANG_ENABLE_OBJC_ARC': 'YES', 59 'CLANG_ENABLE_OBJC_ARC': 'YES',
45 'CLANG_WARN_OBJC_MISSING_PROPERTY_SYNTHESIS': 'YES', 60 'CLANG_WARN_OBJC_MISSING_PROPERTY_SYNTHESIS': 'YES',
46 }, 61 },
47 } 62 }
48 ], 63 ],
49 }], # OS=="ios" 64 }], # OS=="ios"
50 ], 65 ],
51 'targets': [ 66 'targets': [
52 { 67 {
(...skipping 644 matching lines...) Expand 10 before | Expand all | Expand 10 after
697 ], 712 ],
698 }, { 713 }, {
699 'include_dirs': [ 714 'include_dirs': [
700 '<(ssl_root)', 715 '<(ssl_root)',
701 ], 716 ],
702 }], 717 }],
703 ], 718 ],
704 }, 719 },
705 ], 720 ],
706 } 721 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698