| 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 'includes': [ | 6 'includes': [ |
| 7 'khronos_glcts.gypi', | 7 'khronos_glcts.gypi', |
| 8 'khronos_glcts_defaults.gypi', |
| 8 ], | 9 ], |
| 9 'targets': [ | 10 'targets': [ |
| 10 { | 11 { |
| 11 'target_name': 'gtf_es', | 12 'target_name': 'gtf_es', |
| 12 'type': 'static_library', | 13 'type': 'static_library', |
| 13 'conditions': [ | 14 'conditions': [ |
| 14 ['OS=="linux"', { | 15 ['OS=="linux"', { |
| 15 'cflags': [ | 16 'cflags': [ |
| 16 # WA: Suppress "control reaches end of non-void function" compile | 17 # WA: Suppress "control reaches end of non-void function" compile |
| 17 # warning from GTFTestDriver.c. | 18 # warning from GTFTestDriver.c. |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 }, | 58 }, |
| 58 'sources': [ | 59 'sources': [ |
| 59 '<@(gtf_core_srcs)', | 60 '<@(gtf_core_srcs)', |
| 60 '<@(gtf_gl_core_srcs)', | 61 '<@(gtf_gl_core_srcs)', |
| 61 '<@(gtf_gles2_srcs)', | 62 '<@(gtf_gles2_srcs)', |
| 62 '<@(gtf_gles2_es_only_srcs)', | 63 '<@(gtf_gles2_es_only_srcs)', |
| 63 ], | 64 ], |
| 64 }, | 65 }, |
| 65 ], | 66 ], |
| 66 } | 67 } |
| OLD | NEW |