| 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 'conditions': [ | 10 'conditions': [ |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 'CODEC_ISAC_SWB', | 67 'CODEC_ISAC_SWB', |
| 68 'CODEC_PCM16B_32KHZ', | 68 'CODEC_PCM16B_32KHZ', |
| 69 'CODEC_PCM16B_48KHZ', | 69 'CODEC_PCM16B_48KHZ', |
| 70 'CODEC_CNGCODEC8', | 70 'CODEC_CNGCODEC8', |
| 71 'CODEC_CNGCODEC16', | 71 'CODEC_CNGCODEC16', |
| 72 'CODEC_CNGCODEC32', | 72 'CODEC_CNGCODEC32', |
| 73 'CODEC_ATEVENT_DECODE', | 73 'CODEC_ATEVENT_DECODE', |
| 74 'CODEC_RED', | 74 'CODEC_RED', |
| 75 ], | 75 ], |
| 76 'include_dirs': [ | 76 'include_dirs': [ |
| 77 'interface', | 77 'include', |
| 78 'test', | 78 'test', |
| 79 '<(webrtc_root)', | 79 '<(webrtc_root)', |
| 80 ], | 80 ], |
| 81 'sources': [ | 81 'sources': [ |
| 82 'test/RTPencode.cc', | 82 'test/RTPencode.cc', |
| 83 ], | 83 ], |
| 84 # Disable warnings to enable Win64 build, issue 1323. | 84 # Disable warnings to enable Win64 build, issue 1323. |
| 85 'msvs_disabled_warnings': [ | 85 'msvs_disabled_warnings': [ |
| 86 4267, # size_t to int truncation. | 86 4267, # size_t to int truncation. |
| 87 ], | 87 ], |
| (...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 283 '<(webrtc_root)/common.gyp:webrtc_common', | 283 '<(webrtc_root)/common.gyp:webrtc_common', |
| 284 'cng', | 284 'cng', |
| 285 'g711', | 285 'g711', |
| 286 'g722', | 286 'g722', |
| 287 'ilbc', | 287 'ilbc', |
| 288 'isac', | 288 'isac', |
| 289 'pcm16b', | 289 'pcm16b', |
| 290 ], | 290 ], |
| 291 'direct_dependent_settings': { | 291 'direct_dependent_settings': { |
| 292 'include_dirs': [ | 292 'include_dirs': [ |
| 293 'interface', | 293 'include', |
| 294 'test', | 294 'test', |
| 295 '<(webrtc_root)', | 295 '<(webrtc_root)', |
| 296 ], | 296 ], |
| 297 }, | 297 }, |
| 298 'defines': [ | 298 'defines': [ |
| 299 ], | 299 ], |
| 300 'include_dirs': [ | 300 'include_dirs': [ |
| 301 'interface', | 301 'include', |
| 302 'test', | 302 'test', |
| 303 '<(webrtc_root)', | 303 '<(webrtc_root)', |
| 304 ], | 304 ], |
| 305 'sources': [ | 305 'sources': [ |
| 306 'test/NETEQTEST_DummyRTPpacket.cc', | 306 'test/NETEQTEST_DummyRTPpacket.cc', |
| 307 'test/NETEQTEST_DummyRTPpacket.h', | 307 'test/NETEQTEST_DummyRTPpacket.h', |
| 308 'test/NETEQTEST_RTPpacket.cc', | 308 'test/NETEQTEST_RTPpacket.cc', |
| 309 'test/NETEQTEST_RTPpacket.h', | 309 'test/NETEQTEST_RTPpacket.h', |
| 310 ], | 310 ], |
| 311 # Disable warnings to enable Win64 build, issue 1323. | 311 # Disable warnings to enable Win64 build, issue 1323. |
| 312 'msvs_disabled_warnings': [ | 312 'msvs_disabled_warnings': [ |
| 313 4267, # size_t to int truncation. | 313 4267, # size_t to int truncation. |
| 314 ], | 314 ], |
| 315 }, | 315 }, |
| 316 ], # targets | 316 ], # targets |
| 317 } | 317 } |
| OLD | NEW |