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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 {
6 'includes': [
7 'khronos_conform.gypi',
8 ],
9 'targets': [
10 {
11 'target_name': 'glcts_common',
12 'type': 'static_library',
13 'dependencies': [
14 '<(DEPTH)/gpu/khronos_conform_support/khronos_conform_framework.gyp:deli bs',
15 '<(DEPTH)/gpu/khronos_conform_support/khronos_conform_framework.gyp:tcut il',
16 '<(DEPTH)/gpu/khronos_conform_support/khronos_conform_framework.gyp:glut il',
17 '<(DEPTH)/gpu/khronos_conform_support/khronos_conform_framework.gyp:tcut il_egl',
18 ],
19 'direct_dependent_settings': {
20 'include_dirs': [
21 '<(DEPTH)/third_party/khronos_conform/cts/common',
22 ],
23 },
24 'sources': [
25 '<@(glcts_common_sources)',
26 ],
27 },
28 {
29 'target_name': 'glcts_gtf_wrapper',
30 'type': 'static_library',
31 'dependencies': [
32 'glcts_common',
33 '<(DEPTH)/gpu/khronos_conform_support/khronos_conform_framework.gyp:deli bs',
34 '<(DEPTH)/gpu/khronos_conform_support/khronos_conform_framework.gyp:tcut il',
35 '<(DEPTH)/gpu/khronos_conform_support/khronos_conform_framework.gyp:glut il',
36 '<(DEPTH)/gpu/khronos_conform_support/khronos_conform_framework.gyp:tcut il_egl',
37 ],
38 'include_dirs': [
39 '<(DEPTH)/third_party/khronos_conform/cts/gtf',
40 '<(DEPTH)/third_party/khronos_conform/GTF_ES/glsl/GTF/Source'
41 ],
42 'direct_dependent_settings': {
43 'include_dirs': [
44 '<(DEPTH)/third_party/khronos_conform/cts/gtf',
45 ],
46 },
47 'sources': [
48 '<@(glcts_gtf_wrapper_srcs)',
49 ],
50 },
51 {
52 'target_name': 'glcts_gtf',
53 'type': 'static_library',
54 'dependencies': [
55 'glcts_common', 'glcts_gtf_wrapper',
56 '<(DEPTH)/gpu/khronos_conform_support/khronos_conform_gtf.gyp:gtf_es',
57 '<(DEPTH)/gpu/khronos_conform_support/khronos_conform_framework.gyp:deli bs',
58 '<(DEPTH)/gpu/khronos_conform_support/khronos_conform_framework.gyp:tcut il',
59 '<(DEPTH)/gpu/khronos_conform_support/khronos_conform_framework.gyp:glut il',
60 ],
61 'direct_dependent_settings': {
62 'include_dirs': [
63 '<(DEPTH)/third_party/khronos_conform/cts/gtf',
64 ],
65 },
66 'sources': [
67 '<@(glcts_gtf_srcs)',
68 ],
69 },
70 {
71 'target_name': 'glcts_es2',
72 'type': 'static_library',
73 'dependencies': [
74 'glcts_common', 'glcts_gtf',
75 '<(DEPTH)/gpu/khronos_conform_support/khronos_conform_framework.gyp:deli bs',
76 '<(DEPTH)/gpu/khronos_conform_support/khronos_conform_framework.gyp:tcut il',
77 '<(DEPTH)/gpu/khronos_conform_support/khronos_conform_framework.gyp:glut il',
78 ],
79 'direct_dependent_settings': {
80 'include_dirs': [
81 '<(DEPTH)/third_party/khronos_conform/cts/gles2',
82 ],
83 },
84 'export_dependent_settings': [
85 'glcts_common',
86 ],
87 'sources': [
88 '<@(glcts_es2_srcs)',
89 ],
90 },
91 ],
92 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698