Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(64)

Side by Side Diff: libyuv_test.gyp

Issue 1611123004: Disable sometimes-uninitialized Clang warning for iOS (Closed) Base URL: https://chromium.googlesource.com/libyuv/libyuv@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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:
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698