| 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 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |