| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |