OLD | NEW |
1 # Copyright 2011 The LibYuv Project Authors. All rights reserved. | 1 # Copyright 2011 The LibYuv 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 'variables': { | 10 'variables': { |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 }], | 69 }], |
70 [ 'OS == "ios" and target_subarch == 64', { | 70 [ 'OS == "ios" and target_subarch == 64', { |
71 'defines': [ | 71 'defines': [ |
72 'LIBYUV_DISABLE_NEON' | 72 'LIBYUV_DISABLE_NEON' |
73 ], | 73 ], |
74 }], | 74 }], |
75 [ 'OS == "ios"', { | 75 [ 'OS == "ios"', { |
76 'xcode_settings': { | 76 'xcode_settings': { |
77 'DEBUGGING_SYMBOLS': 'YES', | 77 'DEBUGGING_SYMBOLS': 'YES', |
78 'DEBUG_INFORMATION_FORMAT' : 'dwarf-with-dsym', | 78 'DEBUG_INFORMATION_FORMAT' : 'dwarf-with-dsym', |
| 79 # Work around compile issue with isosim.mm, see |
| 80 # https://code.google.com/p/libyuv/issues/detail?id=548 for details. |
| 81 'WARNING_CFLAGS': [ |
| 82 '-Wno-sometimes-uninitialized', |
| 83 ], |
79 }, | 84 }, |
| 85 'cflags': [ |
| 86 '-Wno-sometimes-uninitialized', |
| 87 ], |
80 }], | 88 }], |
81 [ 'OS != "ios" and libyuv_disable_jpeg != 1', { | 89 [ 'OS != "ios" and libyuv_disable_jpeg != 1', { |
82 'defines': [ | 90 'defines': [ |
83 'HAVE_JPEG', | 91 'HAVE_JPEG', |
84 ], | 92 ], |
85 }], | 93 }], |
86 ['OS=="android"', { | 94 ['OS=="android"', { |
87 'dependencies': [ | 95 'dependencies': [ |
88 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_code', | 96 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_code', |
89 ], | 97 ], |
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
211 ], | 219 ], |
212 }], | 220 }], |
213 ], | 221 ], |
214 } | 222 } |
215 | 223 |
216 # Local Variables: | 224 # Local Variables: |
217 # tab-width:2 | 225 # tab-width:2 |
218 # indent-tabs-mode:nil | 226 # indent-tabs-mode:nil |
219 # End: | 227 # End: |
220 # vim: set expandtab tabstop=2 shiftwidth=2: | 228 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |