OLD | NEW |
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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 'webrtc/fakewebrtcvideoengine.h', | 62 'webrtc/fakewebrtcvideoengine.h', |
63 'webrtc/fakewebrtcvoiceengine.h', | 63 'webrtc/fakewebrtcvoiceengine.h', |
64 ], | 64 ], |
65 # TODO(kjellander): Make the code compile without disabling these flags. | 65 # TODO(kjellander): Make the code compile without disabling these flags. |
66 # See https://bugs.chromium.org/p/webrtc/issues/detail?id=3307 | 66 # See https://bugs.chromium.org/p/webrtc/issues/detail?id=3307 |
67 'cflags_cc!': [ | 67 'cflags_cc!': [ |
68 '-Wnon-virtual-dtor', | 68 '-Wnon-virtual-dtor', |
69 ], | 69 ], |
70 }, # target rtc_unittest_main | 70 }, # target rtc_unittest_main |
71 { | 71 { |
72 'target_name': 'libjingle_media_unittest', | 72 'target_name': 'rtc_media_unittests', |
73 'type': 'executable', | 73 'type': 'executable', |
74 'dependencies': [ | 74 'dependencies': [ |
75 '<(webrtc_root)/base/base_tests.gyp:rtc_base_tests_utils', | 75 '<(webrtc_root)/base/base_tests.gyp:rtc_base_tests_utils', |
76 '<(webrtc_root)/media/media.gyp:rtc_media', | 76 '<(webrtc_root)/media/media.gyp:rtc_media', |
77 'rtc_unittest_main', | 77 'rtc_unittest_main', |
78 ], | 78 ], |
79 'sources': [ | 79 'sources': [ |
80 'base/capturemanager_unittest.cc', | 80 'base/capturemanager_unittest.cc', |
81 'base/codec_unittest.cc', | 81 'base/codec_unittest.cc', |
82 'base/rtpdataengine_unittest.cc', | 82 'base/rtpdataengine_unittest.cc', |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
162 }], | 162 }], |
163 ['OS=="ios"', { | 163 ['OS=="ios"', { |
164 'sources!': [ | 164 'sources!': [ |
165 'sctp/sctpdataengine_unittest.cc', | 165 'sctp/sctpdataengine_unittest.cc', |
166 ], | 166 ], |
167 }], | 167 }], |
168 ], | 168 ], |
169 }, # target rtc_media_unittests | 169 }, # target rtc_media_unittests |
170 ], | 170 ], |
171 } | 171 } |
OLD | NEW |