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

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

Issue 1398473004: Changed queue implementation to the proposed vector-based solution. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@lock_unittest_CL
Patch Set: Changes in response to reviewer comments Created 5 years, 2 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) 2011 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2011 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': [ 10 'includes': [
(...skipping 320 matching lines...) Expand 10 before | Expand all | Expand 10 after
331 'defines': [ 331 'defines': [
332 'WEBRTC_AUDIOPROC_DEBUG_DUMP', 332 'WEBRTC_AUDIOPROC_DEBUG_DUMP',
333 ], 333 ],
334 'dependencies': [ 334 'dependencies': [
335 'audioproc_protobuf_utils', 335 'audioproc_protobuf_utils',
336 'audioproc_unittest_proto', 336 'audioproc_unittest_proto',
337 ], 337 ],
338 'sources': [ 338 'sources': [
339 'audio_processing/audio_processing_impl_locking_unittest.cc', 339 'audio_processing/audio_processing_impl_locking_unittest.cc',
340 'audio_processing/audio_processing_impl_unittest.cc', 340 'audio_processing/audio_processing_impl_unittest.cc',
341 'audio_processing/swap_queue_unittest.cc',
341 'audio_processing/test/audio_processing_unittest.cc', 342 'audio_processing/test/audio_processing_unittest.cc',
342 'audio_processing/test/test_utils.h', 343 'audio_processing/test/test_utils.h',
343 ], 344 ],
344 }], 345 }],
345 ['build_libvpx==1', { 346 ['build_libvpx==1', {
346 'dependencies': [ 347 'dependencies': [
347 '<(libvpx_dir)/libvpx.gyp:libvpx_new', 348 '<(libvpx_dir)/libvpx.gyp:libvpx_new',
348 ], 349 ],
349 }], 350 }],
350 ['OS=="android"', { 351 ['OS=="android"', {
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
548 'sources': [ 549 'sources': [
549 'video_render_tests.isolate', 550 'video_render_tests.isolate',
550 ], 551 ],
551 }, 552 },
552 ], 553 ],
553 }], 554 }],
554 ], 555 ],
555 }], # include_tests 556 }], # include_tests
556 ], # conditions 557 ], # conditions
557 } 558 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698