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

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

Issue 715633004: Use the experimental PBQP register allocator for UBSan builds. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Don't compile libmesa -O0 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 294 matching lines...) Expand 10 before | Expand all | Expand 10 after
305 'dependencies': [ 305 'dependencies': [
306 '../ozone/ozone.gyp:ozone', 306 '../ozone/ozone.gyp:ozone',
307 '../ozone/ozone.gyp:ozone_base', 307 '../ozone/ozone.gyp:ozone_base',
308 ], 308 ],
309 }], 309 }],
310 ['OS=="android" and android_webview_build==0', { 310 ['OS=="android" and android_webview_build==0', {
311 'dependencies': [ 311 'dependencies': [
312 '../android/ui_android.gyp:ui_java', 312 '../android/ui_android.gyp:ui_java',
313 ], 313 ],
314 }], 314 }],
315 ['ubsan==1', {
316 # Due to a bug in LLVM (http://llvm.org/bugs/show_bug.cgi?id=21349),
317 # compilation hangs for some GL source files. Disable -O2 temporarily
318 # until http://crbug.com/426271 is fixed.
319 'cflags!': [
320 '-O2',
321 ],
322 }],
323 ], 315 ],
324 }, 316 },
325 { 317 {
326 'target_name': 'gl_unittest_utils', 318 'target_name': 'gl_unittest_utils',
327 'type': 'static_library', 319 'type': 'static_library',
328 'variables': { 320 'variables': {
329 'gl_binding_output_dir': '<(SHARED_INTERMEDIATE_DIR)/ui/gl', 321 'gl_binding_output_dir': '<(SHARED_INTERMEDIATE_DIR)/ui/gl',
330 }, 322 },
331 'dependencies': [ 323 'dependencies': [
332 '../../testing/gmock.gyp:gmock', 324 '../../testing/gmock.gyp:gmock',
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
375 ], 367 ],
376 'variables': { 368 'variables': {
377 'jni_gen_package': 'ui/gl', 369 'jni_gen_package': 'ui/gl',
378 }, 370 },
379 'includes': [ '../../build/jni_generator.gypi' ], 371 'includes': [ '../../build/jni_generator.gypi' ],
380 }, 372 },
381 ], 373 ],
382 }], 374 }],
383 ], 375 ],
384 } 376 }
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