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

Side by Side Diff: gpu/gpu_untrusted.gyp

Issue 10796038: Add gpu targets to untrusted NaCl build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 5 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 | Annotate | Revision Log
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 # Copyright (c) 2012 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 'variables': {
7 'chromium_code': 1,
8 },
9 'includes': [
10 '../native_client/build/untrusted.gypi',
11 'gpu_common.gypi',
12 ],
13 'conditions': [
14 ['disable_nacl==0 and disable_nacl_untrusted==0', {
15 'targets': [
16 {
17 'target_name': 'gles2_implementation_untrusted',
18 'type': 'none',
19 'variables': {
20 'nacl_untrusted_build': 1,
21 'nlib_target': 'libgles2_implementation_untrusted.a',
22 'build_glibc': 0,
23 'build_newlib': 1,
24 },
25 'all_dependent_settings': {
26 'include_dirs': [
27 '<(DEPTH)/third_party/khronos',
28 ],
29 },
30 'defines': [
31 'GLES2_IMPL_IMPLEMENTATION',
32 ],
33 'sources': [
34 '<@(gles2_implementation_source_files)',
35 ],
36 'dependencies': [
37 '<(DEPTH)/native_client/tools.gyp:prep_toolchain',
38 '../base/base_untrusted.gyp:base_untrusted',
39 'command_buffer/command_buffer_untrusted.gyp:gles2_utils_untrusted',
40 'gles2_cmd_helper_untrusted',
41 ],
42 },
43 {
44 'target_name': 'command_buffer_common_untrusted',
45 'type': 'none',
46 'variables': {
47 'nacl_untrusted_build': 1,
48 'nlib_target': 'libcommand_buffer_common_untrusted.a',
49 'build_glibc': 0,
50 'build_newlib': 1,
51 },
52 'includes': [
53 'command_buffer_common.gypi',
54 ],
55 'dependencies': [
56 '<(DEPTH)/native_client/tools.gyp:prep_toolchain',
57 '../base/base_untrusted.gyp:base_untrusted',
58 'command_buffer/command_buffer_untrusted.gyp:gles2_utils_untrusted',
59 ],
60 },
61 {
62 'target_name': 'gles2_cmd_helper_untrusted',
63 'type': 'none',
64 'variables': {
65 'nacl_untrusted_build': 1,
66 'nlib_target': 'libgles2_cmd_helper_untrusted.a',
67 'build_glibc': 0,
68 'build_newlib': 1,
69 },
70 'includes': [
71 'gles2_cmd_helper.gypi',
72 ],
73 'dependencies': [
74 '<(DEPTH)/native_client/tools.gyp:prep_toolchain',
75 'command_buffer_client_untrusted',
76 ],
77 },
78 {
79 'target_name': 'command_buffer_client_untrusted',
80 'type': 'none',
81 'variables': {
82 'nacl_untrusted_build': 1,
83 'nlib_target': 'libcommand_buffer_client_untrusted.a',
84 'build_glibc': 0,
85 'build_newlib': 1,
86 },
87 'includes': [
88 'command_buffer_client.gypi',
89 ],
90 'dependencies': [
91 '<(DEPTH)/native_client/tools.gyp:prep_toolchain',
92 'command_buffer_common_untrusted',
93 ],
94 },
95 {
96 'target_name': 'gpu_ipc_untrusted',
97 'type': 'none',
98 'variables': {
99 'nacl_untrusted_build': 1,
100 'nlib_target': 'libgpu_ipc_untrusted.a',
101 'build_glibc': 0,
102 'build_newlib': 1,
103 },
104 'includes': [
105 'gpu_ipc.gypi',
106 ],
107 'dependencies': [
108 '<(DEPTH)/native_client/tools.gyp:prep_toolchain',
109 'command_buffer_common_untrusted',
110 ],
111 },
112 ],
113 }],
114 ],
115 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698