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 'targets': [ | 11 'targets': [ |
12 { | 12 { |
13 'target_name': 'libjingle_p2p_unittest', | 13 'target_name': 'rtc_pc_unittests', |
14 'type': 'executable', | 14 'type': 'executable', |
15 'dependencies': [ | 15 'dependencies': [ |
16 '<(webrtc_root)/api/api.gyp:libjingle_peerconnection', | 16 '<(webrtc_root)/api/api.gyp:libjingle_peerconnection', |
17 '<(webrtc_root)/base/base_tests.gyp:rtc_base_tests_utils', | 17 '<(webrtc_root)/base/base_tests.gyp:rtc_base_tests_utils', |
18 '<(webrtc_root)/webrtc.gyp:rtc_unittest_main', | 18 '<(webrtc_root)/webrtc.gyp:rtc_unittest_main', |
19 '<(webrtc_root)/pc/pc.gyp:rtc_pc', | 19 '<(webrtc_root)/pc/pc.gyp:rtc_pc', |
20 ], | 20 ], |
21 'include_dirs': [ | 21 'include_dirs': [ |
22 '<(DEPTH)/third_party/libsrtp/srtp', | 22 '<(DEPTH)/third_party/libsrtp/srtp', |
23 ], | 23 ], |
(...skipping 25 matching lines...) Expand all Loading... |
49 ['OS=="win"', { | 49 ['OS=="win"', { |
50 'msvs_settings': { | 50 'msvs_settings': { |
51 'VCLinkerTool': { | 51 'VCLinkerTool': { |
52 'AdditionalDependencies': [ | 52 'AdditionalDependencies': [ |
53 'strmiids.lib', | 53 'strmiids.lib', |
54 ], | 54 ], |
55 }, | 55 }, |
56 }, | 56 }, |
57 }], | 57 }], |
58 ], | 58 ], |
59 }, # target libjingle_p2p_unittest | 59 }, # target rtc_pc_unittests |
60 ], | 60 ], |
61 } | 61 } |
OLD | NEW |