OLD | NEW |
1 # Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2013 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': ['../build/common.gypi'], | 10 'includes': ['../build/common.gypi'], |
(...skipping 17 matching lines...) Expand all Loading... |
28 # Disable warnings to enable Win64 build, issue 1323. | 28 # Disable warnings to enable Win64 build, issue 1323. |
29 'msvs_disabled_warnings': [ | 29 'msvs_disabled_warnings': [ |
30 4267, # size_t to int truncation. | 30 4267, # size_t to int truncation. |
31 ], | 31 ], |
32 'conditions': [ | 32 'conditions': [ |
33 ['OS=="android"', { | 33 ['OS=="android"', { |
34 'dependencies': [ | 34 'dependencies': [ |
35 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_code', | 35 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_code', |
36 ], | 36 ], |
37 }], | 37 }], |
| 38 ['OS=="ios"', { |
| 39 'mac_bundle_resources': [ |
| 40 '<(DEPTH)/resources/foreman_cif.yuv', |
| 41 ], |
| 42 }], |
38 ], | 43 ], |
39 }, | 44 }, |
40 ], # targets | 45 ], # targets |
41 'conditions': [ | 46 'conditions': [ |
42 ['OS=="android"', { | 47 ['OS=="android"', { |
43 'targets': [ | 48 'targets': [ |
44 { | 49 { |
45 'target_name': 'common_video_unittests_apk_target', | 50 'target_name': 'common_video_unittests_apk_target', |
46 'type': 'none', | 51 'type': 'none', |
47 'dependencies': [ | 52 'dependencies': [ |
(...skipping 14 matching lines...) Expand all Loading... |
62 '../build/isolate.gypi', | 67 '../build/isolate.gypi', |
63 ], | 68 ], |
64 'sources': [ | 69 'sources': [ |
65 'common_video_unittests.isolate', | 70 'common_video_unittests.isolate', |
66 ], | 71 ], |
67 }, | 72 }, |
68 ], | 73 ], |
69 }], | 74 }], |
70 ], | 75 ], |
71 } | 76 } |
OLD | NEW |