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

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

Issue 1510493004: Bitexactness test for the highpass filter (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Refactored the test not to use fixtures in response to reviewer comments Created 5 years 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 385 matching lines...) Expand 10 before | Expand all | Expand 10 after
396 ['enable_protobuf==1', { 396 ['enable_protobuf==1', {
397 'defines': [ 397 'defines': [
398 'WEBRTC_AUDIOPROC_DEBUG_DUMP', 398 'WEBRTC_AUDIOPROC_DEBUG_DUMP',
399 ], 399 ],
400 'dependencies': [ 400 'dependencies': [
401 'audioproc_protobuf_utils', 401 'audioproc_protobuf_utils',
402 'audioproc_unittest_proto', 402 'audioproc_unittest_proto',
403 ], 403 ],
404 'sources': [ 404 'sources': [
405 'audio_processing/audio_processing_impl_locking_unittest.cc' , 405 'audio_processing/audio_processing_impl_locking_unittest.cc' ,
406 'audio_processing/high_pass_filter_bitexactness_unittest.cc' ,
hlundin-webrtc 2015/12/10 12:12:17 Sort the files.
peah-webrtc 2015/12/22 06:28:11 Done.
406 'audio_processing/audio_processing_impl_unittest.cc', 407 'audio_processing/audio_processing_impl_unittest.cc',
407 'audio_processing/test/audio_processing_unittest.cc', 408 'audio_processing/test/audio_processing_unittest.cc',
409 'audio_processing/test/vector_based_audio_frame.cc',
410 'audio_processing/test/vector_based_audio_frame.h',
408 'audio_processing/test/debug_dump_test.cc', 411 'audio_processing/test/debug_dump_test.cc',
409 'audio_processing/test/test_utils.h', 412 'audio_processing/test/test_utils.h',
410 ], 413 ],
411 }], 414 }],
412 ['build_libvpx==1', { 415 ['build_libvpx==1', {
413 'dependencies': [ 416 'dependencies': [
414 '<(libvpx_dir)/libvpx.gyp:libvpx_new', 417 '<(libvpx_dir)/libvpx.gyp:libvpx_new',
415 ], 418 ],
416 }], 419 }],
417 ['OS=="android"', { 420 ['OS=="android"', {
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
561 'sources': [ 564 'sources': [
562 'video_render_tests.isolate', 565 'video_render_tests.isolate',
563 ], 566 ],
564 }, 567 },
565 ], 568 ],
566 }], 569 }],
567 ], 570 ],
568 }], # include_tests 571 }], # include_tests
569 ], # conditions 572 ], # conditions
570 } 573 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698