Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | |
| 2 # Use of this source code is governed by a BSD-style license that can be | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 { | |
| 6 'target_defaults': { | |
| 7 'defines': [ | |
| 8 'DEQP_TARGET_NAME="chrome-gpu-command-buffer"', | |
| 9 'DEQP_SUPPORT_GLES2=1', | |
| 10 'DEQP_SUPPORT_EGL=1', | |
| 11 'GTF_API=GTF_GLES20', | |
| 12 ], | |
| 13 'conditions': [ | |
| 14 ['OS=="linux"', { | |
| 15 'defines': [ | |
| 16 '_XOPEN_SOURCE=500', | |
| 17 ], | |
| 18 'cflags!': [ | |
| 19 '-fno-exceptions', | |
| 20 ], | |
| 21 'cflags_cc!': [ | |
| 22 '-fno-exceptions', | |
| 23 ], | |
| 24 'target_conditions': [ | |
| 25 ['_type=="static_library"', { | |
|
piman
2015/10/28 22:45:38
Why specific to static_library?
U. Artie Eoff
2015/10/28 22:57:31
Because all the khronos_glcts third_party code is
| |
| 26 'cflags_cc!': [ | |
| 27 '-fno-rtti', | |
| 28 ], | |
| 29 }], | |
| 30 ], | |
| 31 }], | |
| 32 ], | |
| 33 }, | |
| 34 } | |
| OLD | NEW |