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 302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
313 ], | 313 ], |
314 }], | 314 }], |
315 ['prefer_fixed_point==1', { | 315 ['prefer_fixed_point==1', { |
316 'defines': [ 'WEBRTC_AUDIOPROC_FIXED_PROFILE' ], | 316 'defines': [ 'WEBRTC_AUDIOPROC_FIXED_PROFILE' ], |
317 }, { | 317 }, { |
318 'defines': [ 'WEBRTC_AUDIOPROC_FLOAT_PROFILE' ], | 318 'defines': [ 'WEBRTC_AUDIOPROC_FLOAT_PROFILE' ], |
319 }], | 319 }], |
320 ['enable_protobuf==1', { | 320 ['enable_protobuf==1', { |
321 'defines': [ | 321 'defines': [ |
322 'WEBRTC_AUDIOPROC_DEBUG_DUMP', | 322 'WEBRTC_AUDIOPROC_DEBUG_DUMP', |
323 'RTC_AUDIOCODING_DEBUG_DUMP', | |
324 ], | 323 ], |
325 'dependencies': [ | 324 'dependencies': [ |
326 'acm_dump', | |
327 'audioproc_protobuf_utils', | 325 'audioproc_protobuf_utils', |
328 'audioproc_unittest_proto', | 326 'audioproc_unittest_proto', |
329 ], | 327 ], |
330 'sources': [ | 328 'sources': [ |
331 'audio_coding/main/acm2/acm_dump_unittest.cc', | |
332 'audio_processing/audio_processing_impl_unittest.cc', | 329 'audio_processing/audio_processing_impl_unittest.cc', |
333 'audio_processing/test/audio_processing_unittest.cc', | 330 'audio_processing/test/audio_processing_unittest.cc', |
334 'audio_processing/test/test_utils.h', | 331 'audio_processing/test/test_utils.h', |
335 ], | 332 ], |
336 }], | 333 }], |
337 ['build_libvpx==1', { | 334 ['build_libvpx==1', { |
338 'dependencies': [ | 335 'dependencies': [ |
339 '<(libvpx_dir)/libvpx.gyp:libvpx', | 336 '<(libvpx_dir)/libvpx.gyp:libvpx', |
340 ], | 337 ], |
341 }], | 338 }], |
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
489 'sources': [ | 486 'sources': [ |
490 'modules_unittests.isolate', | 487 'modules_unittests.isolate', |
491 ], | 488 ], |
492 }, | 489 }, |
493 ], | 490 ], |
494 }], | 491 }], |
495 ], | 492 ], |
496 }], # include_tests | 493 }], # include_tests |
497 ], # conditions | 494 ], # conditions |
498 } | 495 } |
OLD | NEW |