| OLD | NEW |
| 1 # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2012 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 'targets': [ | 10 'targets': [ |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 ], | 38 ], |
| 39 'dependencies': [ | 39 'dependencies': [ |
| 40 'audio_encoder_interface', | 40 'audio_encoder_interface', |
| 41 ], | 41 ], |
| 42 'include_dirs': [ | 42 'include_dirs': [ |
| 43 '<(webrtc_root)', | 43 '<(webrtc_root)', |
| 44 ], | 44 ], |
| 45 'sources': [ | 45 'sources': [ |
| 46 'audio_decoder_opus.cc', | 46 'audio_decoder_opus.cc', |
| 47 'audio_encoder_opus.cc', | 47 'audio_encoder_opus.cc', |
| 48 'interface/audio_decoder_opus.h', | 48 'include/audio_decoder_opus.h', |
| 49 'interface/audio_encoder_opus.h', | 49 'include/audio_encoder_opus.h', |
| 50 'interface/opus_interface.h', | 50 'include/opus_interface.h', |
| 51 'opus_inst.h', | 51 'opus_inst.h', |
| 52 'opus_interface.c', | 52 'opus_interface.c', |
| 53 ], | 53 ], |
| 54 }, | 54 }, |
| 55 ], | 55 ], |
| 56 'conditions': [ | 56 'conditions': [ |
| 57 ['include_tests==1', { | 57 ['include_tests==1', { |
| 58 'targets': [ | 58 'targets': [ |
| 59 { | 59 { |
| 60 'target_name': 'webrtc_opus_fec_test', | 60 'target_name': 'webrtc_opus_fec_test', |
| 61 'type': 'executable', | 61 'type': 'executable', |
| 62 'dependencies': [ | 62 'dependencies': [ |
| 63 'webrtc_opus', | 63 'webrtc_opus', |
| 64 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio', | 64 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio', |
| 65 '<(webrtc_root)/test/test.gyp:test_support_main', | 65 '<(webrtc_root)/test/test.gyp:test_support_main', |
| 66 '<(DEPTH)/testing/gtest.gyp:gtest', | 66 '<(DEPTH)/testing/gtest.gyp:gtest', |
| 67 ], | 67 ], |
| 68 'include_dirs': [ | 68 'include_dirs': [ |
| 69 '<(webrtc_root)', | 69 '<(webrtc_root)', |
| 70 ], | 70 ], |
| 71 'sources': [ | 71 'sources': [ |
| 72 'opus_fec_test.cc', | 72 'opus_fec_test.cc', |
| 73 ], | 73 ], |
| 74 }, | 74 }, |
| 75 ], | 75 ], |
| 76 }], | 76 }], |
| 77 ], | 77 ], |
| 78 } | 78 } |
| OLD | NEW |