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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
100 'rtp_rtcp/test/testFec/test_fec.cc', | 100 'rtp_rtcp/test/testFec/test_fec.cc', |
101 'video_coding/codecs/test/videoprocessor_integrationtest.cc', | 101 'video_coding/codecs/test/videoprocessor_integrationtest.cc', |
102 'video_coding/codecs/vp8/test/vp8_impl_unittest.cc', | 102 'video_coding/codecs/vp8/test/vp8_impl_unittest.cc', |
103 ], | 103 ], |
104 'conditions': [ | 104 'conditions': [ |
105 ['OS=="android"', { | 105 ['OS=="android"', { |
106 'dependencies': [ | 106 'dependencies': [ |
107 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_cod
e', | 107 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_cod
e', |
108 ], | 108 ], |
109 }], | 109 }], |
| 110 ['OS=="ios"', { |
| 111 'mac_bundle_resources': [ |
| 112 '<(DEPTH)/resources/audio_coding/testfile32kHz.pcm', |
| 113 '<(DEPTH)/resources/audio_coding/teststereo32kHz.pcm', |
| 114 '<(DEPTH)/resources/foreman_cif.yuv', |
| 115 '<(DEPTH)/resources/paris_qcif.yuv', |
| 116 ], |
| 117 }], |
110 ], | 118 ], |
111 }, | 119 }, |
112 ], | 120 ], |
113 'conditions': [ | 121 'conditions': [ |
114 # Does not compile on iOS for ia32 or x64: webrtc:4755. | 122 # Does not compile on iOS for ia32 or x64: webrtc:4755. |
115 ['OS!="ios" or target_arch=="arm" or target_arch=="arm64"', { | 123 ['OS!="ios" or target_arch=="arm" or target_arch=="arm64"', { |
116 'targets': [ | 124 'targets': [ |
117 { | 125 { |
118 'target_name': 'modules_unittests', | 126 'target_name': 'modules_unittests', |
119 'type': '<(gtest_target_type)', | 127 'type': '<(gtest_target_type)', |
(...skipping 468 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
588 'sources': [ | 596 'sources': [ |
589 'video_render_tests.isolate', | 597 'video_render_tests.isolate', |
590 ], | 598 ], |
591 }, | 599 }, |
592 ], | 600 ], |
593 }], | 601 }], |
594 ], | 602 ], |
595 }], # include_tests | 603 }], # include_tests |
596 ], # conditions | 604 ], # conditions |
597 } | 605 } |
OLD | NEW |