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

Unified Diff: gpu/khronos_glcts_support/khronos_glcts_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: Rebase 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
« no previous file with comments | « gpu/khronos_glcts_support/khronos_glcts.gypi ('k') | gpu/khronos_glcts_support/khronos_glcts_framework.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/khronos_glcts_support/khronos_glcts_cts.gyp
diff --git a/gpu/khronos_glcts_support/khronos_glcts_cts.gyp b/gpu/khronos_glcts_support/khronos_glcts_cts.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..6e00afcd148d5c363f60e66be64a7ea8dc92f517
--- /dev/null
+++ b/gpu/khronos_glcts_support/khronos_glcts_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_glcts.gypi',
+ ],
+ 'targets': [
+ {
+ 'target_name': 'glcts_common',
+ 'type': 'static_library',
+ 'dependencies': [
+ '<(DEPTH)/gpu/khronos_glcts_support/khronos_glcts_framework.gyp:delibs',
+ '<(DEPTH)/gpu/khronos_glcts_support/khronos_glcts_framework.gyp:tcutil',
+ '<(DEPTH)/gpu/khronos_glcts_support/khronos_glcts_framework.gyp:glutil',
+ '<(DEPTH)/gpu/khronos_glcts_support/khronos_glcts_framework.gyp:tcutil_egl',
+ ],
+ 'direct_dependent_settings': {
+ 'include_dirs': [
+ '<(DEPTH)/third_party/khronos_glcts/cts/common',
+ ],
+ },
+ 'sources': [
+ '<@(glcts_common_sources)',
+ ],
+ },
+ {
+ 'target_name': 'glcts_gtf_wrapper',
+ 'type': 'static_library',
+ 'dependencies': [
+ 'glcts_common',
+ '<(DEPTH)/gpu/khronos_glcts_support/khronos_glcts_framework.gyp:delibs',
+ '<(DEPTH)/gpu/khronos_glcts_support/khronos_glcts_framework.gyp:tcutil',
+ '<(DEPTH)/gpu/khronos_glcts_support/khronos_glcts_framework.gyp:glutil',
+ '<(DEPTH)/gpu/khronos_glcts_support/khronos_glcts_framework.gyp:tcutil_egl',
+ ],
+ 'include_dirs': [
+ '<(DEPTH)/third_party/khronos_glcts/cts/gtf',
+ '<(DEPTH)/third_party/khronos_glcts/GTF_ES/glsl/GTF/Source'
+ ],
+ 'direct_dependent_settings': {
+ 'include_dirs': [
+ '<(DEPTH)/third_party/khronos_glcts/cts/gtf',
+ ],
+ },
+ 'sources': [
+ '<@(glcts_gtf_wrapper_srcs)',
+ ],
+ },
+ {
+ 'target_name': 'glcts_gtf',
+ 'type': 'static_library',
+ 'dependencies': [
+ 'glcts_common', 'glcts_gtf_wrapper',
+ '<(DEPTH)/gpu/khronos_glcts_support/khronos_glcts_gtf.gyp:gtf_es',
+ '<(DEPTH)/gpu/khronos_glcts_support/khronos_glcts_framework.gyp:delibs',
+ '<(DEPTH)/gpu/khronos_glcts_support/khronos_glcts_framework.gyp:tcutil',
+ '<(DEPTH)/gpu/khronos_glcts_support/khronos_glcts_framework.gyp:glutil',
+ ],
+ 'direct_dependent_settings': {
+ 'include_dirs': [
+ '<(DEPTH)/third_party/khronos_glcts/cts/gtf',
+ ],
+ },
+ 'sources': [
+ '<@(glcts_gtf_srcs)',
+ ],
+ },
+ {
+ 'target_name': 'glcts_es2',
+ 'type': 'static_library',
+ 'dependencies': [
+ 'glcts_common', 'glcts_gtf',
+ '<(DEPTH)/gpu/khronos_glcts_support/khronos_glcts_framework.gyp:delibs',
+ '<(DEPTH)/gpu/khronos_glcts_support/khronos_glcts_framework.gyp:tcutil',
+ '<(DEPTH)/gpu/khronos_glcts_support/khronos_glcts_framework.gyp:glutil',
+ ],
+ 'direct_dependent_settings': {
+ 'include_dirs': [
+ '<(DEPTH)/third_party/khronos_glcts/cts/gles2',
+ ],
+ },
+ 'export_dependent_settings': [
+ 'glcts_common',
+ ],
+ 'sources': [
+ '<@(glcts_es2_srcs)',
+ ],
+ },
+ ],
+}
« no previous file with comments | « gpu/khronos_glcts_support/khronos_glcts.gypi ('k') | gpu/khronos_glcts_support/khronos_glcts_framework.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698