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

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

Issue 1844843003: Add mock AudioDeviceModule. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@wvoe_adm_in_ctor
Patch Set: rebase Created 4 years, 8 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) 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', ],
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 ], 196 ],
197 }, # target rtc_media 197 }, # target rtc_media
198 ], # targets. 198 ], # targets.
199 'conditions': [ 199 'conditions': [
200 ['include_tests==1', { 200 ['include_tests==1', {
201 'targets' : [ 201 'targets' : [
202 { 202 {
203 'target_name': 'rtc_unittest_main', 203 'target_name': 'rtc_unittest_main',
204 'type': 'static_library', 204 'type': 'static_library',
205 'dependencies': [ 205 'dependencies': [
206 '<(DEPTH)/testing/gmock.gyp:gmock',
207 '<(DEPTH)/testing/gtest.gyp:gtest',
206 '<(webrtc_root)/base/base_tests.gyp:rtc_base_tests_utils', 208 '<(webrtc_root)/base/base_tests.gyp:rtc_base_tests_utils',
207 ], 209 ],
208 'direct_dependent_settings': { 210 'direct_dependent_settings': {
209 'include_dirs': [ 211 'include_dirs': [
210 '<(libyuv_dir)/include', 212 '<(libyuv_dir)/include',
211 '<(DEPTH)/testing/gtest/include', 213 '<(DEPTH)/testing/gmock/include',
212 '<(DEPTH)/testing/gtest',
213 ], 214 ],
214 }, 215 },
215 'conditions': [ 216 'conditions': [
216 ['build_libyuv==1', { 217 ['build_libyuv==1', {
217 'dependencies': ['<(DEPTH)/third_party/libyuv/libyuv.gyp:libyuv',] , 218 'dependencies': ['<(DEPTH)/third_party/libyuv/libyuv.gyp:libyuv',] ,
218 }], 219 }],
219 ['OS=="ios"', { 220 ['OS=="ios"', {
220 # TODO(kjellander): Make the code compile without disabling these. 221 # TODO(kjellander): Make the code compile without disabling these.
221 # See https://bugs.chromium.org/p/webrtc/issues/detail?id=3307 222 # See https://bugs.chromium.org/p/webrtc/issues/detail?id=3307
222 'cflags': [ 223 'cflags': [
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
376 'sources': [ 377 'sources': [
377 'rtc_media_unittests.isolate', 378 'rtc_media_unittests.isolate',
378 ], 379 ],
379 }, 380 },
380 ], 381 ],
381 }], 382 }],
382 ], # conditions 383 ], # conditions
383 }], # include_tests==1 384 }], # include_tests==1
384 ], # conditions 385 ], # conditions
385 } 386 }
OLDNEW
« no previous file with comments | « webrtc/media/engine/webrtcvoiceengine_unittest.cc ('k') | webrtc/modules/audio_device/include/mock_audio_device.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698