| OLD | NEW |
| 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 378 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 389 ], | 389 ], |
| 390 }], | 390 }], |
| 391 ['prefer_fixed_point==1', { | 391 ['prefer_fixed_point==1', { |
| 392 'defines': [ 'WEBRTC_AUDIOPROC_FIXED_PROFILE' ], | 392 'defines': [ 'WEBRTC_AUDIOPROC_FIXED_PROFILE' ], |
| 393 }, { | 393 }, { |
| 394 'defines': [ 'WEBRTC_AUDIOPROC_FLOAT_PROFILE' ], | 394 'defines': [ 'WEBRTC_AUDIOPROC_FLOAT_PROFILE' ], |
| 395 }], | 395 }], |
| 396 ['enable_protobuf==1', { | 396 ['enable_protobuf==1', { |
| 397 'defines': [ | 397 'defines': [ |
| 398 'WEBRTC_AUDIOPROC_DEBUG_DUMP', | 398 'WEBRTC_AUDIOPROC_DEBUG_DUMP', |
| 399 'WEBRTC_NETEQ_UNITTEST_BITEXACT', |
| 399 ], | 400 ], |
| 400 'dependencies': [ | 401 'dependencies': [ |
| 401 'audioproc_protobuf_utils', | 402 'audioproc_protobuf_utils', |
| 402 'audioproc_unittest_proto', | 403 'audioproc_unittest_proto', |
| 404 'neteq_unittest_proto', |
| 403 ], | 405 ], |
| 404 'sources': [ | 406 'sources': [ |
| 405 'audio_processing/audio_processing_impl_locking_unittest.cc'
, | 407 'audio_processing/audio_processing_impl_locking_unittest.cc'
, |
| 406 'audio_processing/audio_processing_impl_unittest.cc', | 408 'audio_processing/audio_processing_impl_unittest.cc', |
| 407 'audio_processing/test/audio_processing_unittest.cc', | 409 'audio_processing/test/audio_processing_unittest.cc', |
| 408 'audio_processing/test/debug_dump_test.cc', | 410 'audio_processing/test/debug_dump_test.cc', |
| 409 'audio_processing/test/test_utils.h', | 411 'audio_processing/test/test_utils.h', |
| 410 ], | 412 ], |
| 411 }], | 413 }], |
| 412 ['build_libvpx==1', { | 414 ['build_libvpx==1', { |
| (...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 561 'sources': [ | 563 'sources': [ |
| 562 'video_render_tests.isolate', | 564 'video_render_tests.isolate', |
| 563 ], | 565 ], |
| 564 }, | 566 }, |
| 565 ], | 567 ], |
| 566 }], | 568 }], |
| 567 ], | 569 ], |
| 568 }], # include_tests | 570 }], # include_tests |
| 569 ], # conditions | 571 ], # conditions |
| 570 } | 572 } |
| OLD | NEW |