| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 '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"', { | |
| 26 'cflags_cc!': [ | |
| 27 '-fno-rtti', | |
| 28 ], | |
| 29 }], | |
| 30 ], | |
| 31 }], | |
| 32 ], | |
| 33 }, | |
| 34 'variables': { | 6 'variables': { |
| 35 | 7 |
| 36 # WA: Suppress [chromium-style] enforcement errors when compiled with | 8 # WA: Suppress [chromium-style] enforcement errors when compiled with |
| 37 # clang. The third_party/khronos_glcts sourcecode does not comply with | 9 # clang. The third_party/khronos_glcts sourcecode does not comply with |
| 38 # the chromium-style standards. | 10 # the chromium-style standards. |
| 39 'clang_use_chrome_plugins': 0, | 11 'clang_use_chrome_plugins': 0, |
| 40 | 12 |
| 41 'glcts_data_dirs': [ | 13 'glcts_data_dirs': [ |
| 42 '<(DEPTH)/third_party/khronos_glcts/cts/data', | 14 '<(DEPTH)/third_party/khronos_glcts/cts/data', |
| 43 ], | 15 ], |
| (...skipping 465 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 509 '<(DEPTH)/third_party/khronos_glcts/framework/delibs/decpp/deStringUtil.hp
p', | 481 '<(DEPTH)/third_party/khronos_glcts/framework/delibs/decpp/deStringUtil.hp
p', |
| 510 '<(DEPTH)/third_party/khronos_glcts/framework/delibs/decpp/deThread.cpp', | 482 '<(DEPTH)/third_party/khronos_glcts/framework/delibs/decpp/deThread.cpp', |
| 511 '<(DEPTH)/third_party/khronos_glcts/framework/delibs/decpp/deThread.hpp', | 483 '<(DEPTH)/third_party/khronos_glcts/framework/delibs/decpp/deThread.hpp', |
| 512 '<(DEPTH)/third_party/khronos_glcts/framework/delibs/decpp/deThreadSafeRin
gBuffer.cpp', | 484 '<(DEPTH)/third_party/khronos_glcts/framework/delibs/decpp/deThreadSafeRin
gBuffer.cpp', |
| 513 '<(DEPTH)/third_party/khronos_glcts/framework/delibs/decpp/deThreadSafeRin
gBuffer.hpp', | 485 '<(DEPTH)/third_party/khronos_glcts/framework/delibs/decpp/deThreadSafeRin
gBuffer.hpp', |
| 514 '<(DEPTH)/third_party/khronos_glcts/framework/delibs/decpp/deUniquePtr.cpp
', | 486 '<(DEPTH)/third_party/khronos_glcts/framework/delibs/decpp/deUniquePtr.cpp
', |
| 515 '<(DEPTH)/third_party/khronos_glcts/framework/delibs/decpp/deUniquePtr.hpp
', | 487 '<(DEPTH)/third_party/khronos_glcts/framework/delibs/decpp/deUniquePtr.hpp
', |
| 516 ], | 488 ], |
| 517 } | 489 } |
| 518 } | 490 } |
| OLD | NEW |