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

Side by Side Diff: webrtc/sdk/sdk_tests.gyp

Issue 2041743003: GN: Add SDK tests to rtc_unittests. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Final fixes 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
OLDNEW
(Empty)
1 # Copyright 2016 The WebRTC project authors. All Rights Reserved.
2 #
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
5 # tree. An additional intellectual property rights grant can be found
6 # in the file PATENTS. All contributing project authors may
7 # be found in the AUTHORS file in the root of the source tree.
8
9 {
10 'includes': [ '../build/common.gypi', ],
11 'conditions': [
12 ['OS=="ios" or (OS=="mac" and mac_deployment_target=="10.7")', {
13 'targets': [
14 {
15 'target_name': 'rtc_sdk_peerconnection_objc_tests',
16 'type': 'executable',
17 'includes': [
18 '../build/objc_common.gypi',
19 ],
20 'dependencies': [
21 '<(webrtc_root)/base/base_tests.gyp:rtc_base_tests_utils',
22 '<(webrtc_root)/sdk/sdk.gyp:rtc_sdk_peerconnection_objc',
23 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:metrics_default' ,
24 ],
25 'sources': [
26 'objc/Framework/UnitTests/RTCConfigurationTest.mm',
27 'objc/Framework/UnitTests/RTCDataChannelConfigurationTest.mm',
28 'objc/Framework/UnitTests/RTCIceCandidateTest.mm',
29 'objc/Framework/UnitTests/RTCIceServerTest.mm',
30 'objc/Framework/UnitTests/RTCMediaConstraintsTest.mm',
31 'objc/Framework/UnitTests/RTCSessionDescriptionTest.mm',
32 ],
33 'xcode_settings': {
34 # |-ObjC| flag needed to make sure category method implementations
35 # are included:
36 # https://developer.apple.com/library/mac/qa/qa1490/_index.html
37 'OTHER_LDFLAGS': ['-ObjC'],
38 },
39 },
40 ],
41 }], # OS=="ios" or (OS=="mac" and mac_deployment_target=="10.7")
42 ],
43 }
OLDNEW
« webrtc/sdk/BUILD.gn ('K') | « webrtc/sdk/BUILD.gn ('k') | webrtc/webrtc.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698