Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(75)

Unified Diff: gpu/khronos_conform_support/khronos_conform_cts.gyp

Issue 556333003: Add support for khronos gl-cts using its drawElements apis (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: gpu/khronos_conform_support/khronos_conform_cts.gyp
diff --git a/gpu/khronos_conform_support/khronos_conform_cts.gyp b/gpu/khronos_conform_support/khronos_conform_cts.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..82060150b01aa9a5384614e8f1722bb70ebbaae4
--- /dev/null
+++ b/gpu/khronos_conform_support/khronos_conform_cts.gyp
@@ -0,0 +1,92 @@
+# Copyright 2014 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+{
+ 'includes': [
+ 'khronos_conform.gypi',
+ ],
+ 'targets': [
+ {
+ 'target_name': 'glcts_common',
+ 'type': 'static_library',
+ 'dependencies': [
+ '<(DEPTH)/gpu/khronos_conform_support/khronos_conform_framework.gyp:delibs',
+ '<(DEPTH)/gpu/khronos_conform_support/khronos_conform_framework.gyp:tcutil',
+ '<(DEPTH)/gpu/khronos_conform_support/khronos_conform_framework.gyp:glutil',
+ '<(DEPTH)/gpu/khronos_conform_support/khronos_conform_framework.gyp:tcutil_egl',
+ ],
+ 'direct_dependent_settings': {
+ 'include_dirs': [
+ '<(DEPTH)/third_party/khronos_conform/cts/common',
+ ],
+ },
+ 'sources': [
+ '<@(glcts_common_sources)',
+ ],
+ },
+ {
+ 'target_name': 'glcts_gtf_wrapper',
+ 'type': 'static_library',
+ 'dependencies': [
+ 'glcts_common',
+ '<(DEPTH)/gpu/khronos_conform_support/khronos_conform_framework.gyp:delibs',
+ '<(DEPTH)/gpu/khronos_conform_support/khronos_conform_framework.gyp:tcutil',
+ '<(DEPTH)/gpu/khronos_conform_support/khronos_conform_framework.gyp:glutil',
+ '<(DEPTH)/gpu/khronos_conform_support/khronos_conform_framework.gyp:tcutil_egl',
+ ],
+ 'include_dirs': [
+ '<(DEPTH)/third_party/khronos_conform/cts/gtf',
+ '<(DEPTH)/third_party/khronos_conform/GTF_ES/glsl/GTF/Source'
+ ],
+ 'direct_dependent_settings': {
+ 'include_dirs': [
+ '<(DEPTH)/third_party/khronos_conform/cts/gtf',
+ ],
+ },
+ 'sources': [
+ '<@(glcts_gtf_wrapper_srcs)',
+ ],
+ },
+ {
+ 'target_name': 'glcts_gtf',
+ 'type': 'static_library',
+ 'dependencies': [
+ 'glcts_common', 'glcts_gtf_wrapper',
+ '<(DEPTH)/gpu/khronos_conform_support/khronos_conform_gtf.gyp:gtf_es',
+ '<(DEPTH)/gpu/khronos_conform_support/khronos_conform_framework.gyp:delibs',
+ '<(DEPTH)/gpu/khronos_conform_support/khronos_conform_framework.gyp:tcutil',
+ '<(DEPTH)/gpu/khronos_conform_support/khronos_conform_framework.gyp:glutil',
+ ],
+ 'direct_dependent_settings': {
+ 'include_dirs': [
+ '<(DEPTH)/third_party/khronos_conform/cts/gtf',
+ ],
+ },
+ 'sources': [
+ '<@(glcts_gtf_srcs)',
+ ],
+ },
+ {
+ 'target_name': 'glcts_es2',
+ 'type': 'static_library',
+ 'dependencies': [
+ 'glcts_common', 'glcts_gtf',
+ '<(DEPTH)/gpu/khronos_conform_support/khronos_conform_framework.gyp:delibs',
+ '<(DEPTH)/gpu/khronos_conform_support/khronos_conform_framework.gyp:tcutil',
+ '<(DEPTH)/gpu/khronos_conform_support/khronos_conform_framework.gyp:glutil',
+ ],
+ 'direct_dependent_settings': {
+ 'include_dirs': [
+ '<(DEPTH)/third_party/khronos_conform/cts/gles2',
+ ],
+ },
+ 'export_dependent_settings': [
+ 'glcts_common',
+ ],
+ 'sources': [
+ '<@(glcts_es2_srcs)',
+ ],
+ },
+ ],
+}

Powered by Google App Engine
This is Rietveld 408576698