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

Side by Side Diff: ui/gl/gl.gyp

Issue 676823002: Disable optimization for libmesa and libgl under UBSan to work around issue 426271 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Whitespace fix Created 6 years, 1 month 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 | « third_party/mesa/mesa.gyp ('k') | 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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 9
10 'targets': [ 10 'targets': [
(...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after
304 'dependencies': [ 304 'dependencies': [
305 '../ozone/ozone.gyp:ozone', 305 '../ozone/ozone.gyp:ozone',
306 '../ozone/ozone.gyp:ozone_base', 306 '../ozone/ozone.gyp:ozone_base',
307 ], 307 ],
308 }], 308 }],
309 ['OS=="android" and android_webview_build==0', { 309 ['OS=="android" and android_webview_build==0', {
310 'dependencies': [ 310 'dependencies': [
311 '../android/ui_android.gyp:ui_java', 311 '../android/ui_android.gyp:ui_java',
312 ], 312 ],
313 }], 313 }],
314 ['ubsan==1', {
315 # Due to a bug in LLVM (http://llvm.org/bugs/show_bug.cgi?id=21349),
316 # compilation hangs for some GL source files. Disable -O2 temporarily
317 # until http://crbug.com/426271 is fixed.
318 'cflags!': [
319 '-O2',
320 ],
321 }],
314 ], 322 ],
315 }, 323 },
316 { 324 {
317 'target_name': 'gl_unittest_utils', 325 'target_name': 'gl_unittest_utils',
318 'type': 'static_library', 326 'type': 'static_library',
319 'variables': { 327 'variables': {
320 'gl_binding_output_dir': '<(SHARED_INTERMEDIATE_DIR)/ui/gl', 328 'gl_binding_output_dir': '<(SHARED_INTERMEDIATE_DIR)/ui/gl',
321 }, 329 },
322 'dependencies': [ 330 'dependencies': [
323 '../../testing/gmock.gyp:gmock', 331 '../../testing/gmock.gyp:gmock',
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
366 ], 374 ],
367 'variables': { 375 'variables': {
368 'jni_gen_package': 'ui/gl', 376 'jni_gen_package': 'ui/gl',
369 }, 377 },
370 'includes': [ '../../build/jni_generator.gypi' ], 378 'includes': [ '../../build/jni_generator.gypi' ],
371 }, 379 },
372 ], 380 ],
373 }], 381 }],
374 ], 382 ],
375 } 383 }
OLDNEW
« no previous file with comments | « third_party/mesa/mesa.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698