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

Side by Side 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, 2 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_glcts.gypi',
8 ],
9 'targets': [
10 {
11 'target_name': 'glcts_common',
12 'type': 'static_library',
13 'dependencies': [
14 '<(DEPTH)/gpu/khronos_glcts_support/khronos_glcts_framework.gyp:delibs',
15 '<(DEPTH)/gpu/khronos_glcts_support/khronos_glcts_framework.gyp:tcutil',
16 '<(DEPTH)/gpu/khronos_glcts_support/khronos_glcts_framework.gyp:glutil',
17 '<(DEPTH)/gpu/khronos_glcts_support/khronos_glcts_framework.gyp:tcutil_e gl',
18 ],
19 'direct_dependent_settings': {
20 'include_dirs': [
21 '<(DEPTH)/third_party/khronos_glcts/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_glcts_support/khronos_glcts_framework.gyp:delibs',
34 '<(DEPTH)/gpu/khronos_glcts_support/khronos_glcts_framework.gyp:tcutil',
35 '<(DEPTH)/gpu/khronos_glcts_support/khronos_glcts_framework.gyp:glutil',
36 '<(DEPTH)/gpu/khronos_glcts_support/khronos_glcts_framework.gyp:tcutil_e gl',
37 ],
38 'include_dirs': [
39 '<(DEPTH)/third_party/khronos_glcts/cts/gtf',
40 '<(DEPTH)/third_party/khronos_glcts/GTF_ES/glsl/GTF/Source'
41 ],
42 'direct_dependent_settings': {
43 'include_dirs': [
44 '<(DEPTH)/third_party/khronos_glcts/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_glcts_support/khronos_glcts_gtf.gyp:gtf_es',
57 '<(DEPTH)/gpu/khronos_glcts_support/khronos_glcts_framework.gyp:delibs',
58 '<(DEPTH)/gpu/khronos_glcts_support/khronos_glcts_framework.gyp:tcutil',
59 '<(DEPTH)/gpu/khronos_glcts_support/khronos_glcts_framework.gyp:glutil',
60 ],
61 'direct_dependent_settings': {
62 'include_dirs': [
63 '<(DEPTH)/third_party/khronos_glcts/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_glcts_support/khronos_glcts_framework.gyp:delibs',
76 '<(DEPTH)/gpu/khronos_glcts_support/khronos_glcts_framework.gyp:tcutil',
77 '<(DEPTH)/gpu/khronos_glcts_support/khronos_glcts_framework.gyp:glutil',
78 ],
79 'direct_dependent_settings': {
80 'include_dirs': [
81 '<(DEPTH)/third_party/khronos_glcts/cts/gles2',
82 ],
83 },
84 'export_dependent_settings': [
85 'glcts_common',
86 ],
87 'sources': [
88 '<@(glcts_es2_srcs)',
89 ],
90 },
91 ],
92 }
OLDNEW
« 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