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

Side by Side Diff: chrome/chrome_renderer.gypi

Issue 367002: Added Pepper 3D render context that instantiates the GPU plugin.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years 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
« no previous file with comments | « chrome/chrome.gyp ('k') | chrome/common/chrome_switches.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'renderer', 8 'target_name': 'renderer',
9 'type': '<(library)', 9 'type': '<(library)',
10 'msvs_guid': '9301A569-5D2B-4D11-9332-B1E30AEACB8D', 10 'msvs_guid': '9301A569-5D2B-4D11-9332-B1E30AEACB8D',
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
141 'renderer/webworker_base.h', 141 'renderer/webworker_base.h',
142 'renderer/webworker_proxy.cc', 142 'renderer/webworker_proxy.cc',
143 'renderer/webworker_proxy.h', 143 'renderer/webworker_proxy.h',
144 ], 144 ],
145 'link_settings': { 145 'link_settings': {
146 'mac_bundle_resources': [ 146 'mac_bundle_resources': [
147 'renderer/renderer.sb', 147 'renderer/renderer.sb',
148 ], 148 ],
149 }, 149 },
150 'conditions': [ 150 'conditions': [
151 ['enable_gpu==1', {
152 'dependencies': [
153 '../gpu/gpu.gyp:gpu_plugin',
154 ],
155 'sources': [
156 'renderer/command_buffer_proxy.cc',
157 'renderer/command_buffer_proxy.h',
158 ],
159 }],
160 ['disable_nacl!=1', { 151 ['disable_nacl!=1', {
161 'dependencies': [ 152 'dependencies': [
162 'nacl', 153 'nacl',
163 ], 154 ],
164 }], 155 }],
165 # Linux-specific rules. 156 # Linux-specific rules.
166 ['OS=="linux"', { 157 ['OS=="linux"', {
167 'dependencies': [ 158 'dependencies': [
168 '../build/linux/system.gyp:gtk', 159 '../build/linux/system.gyp:gtk',
169 '../sandbox/sandbox.gyp:sandbox', 160 '../sandbox/sandbox.gyp:sandbox',
170 ], 161 ],
171 }], 162 }],
172 # Windows-specific rules. 163 # Windows-specific rules.
173 ['OS=="win"', { 164 ['OS=="win"', {
174 'include_dirs': [ 165 'include_dirs': [
175 'third_party/wtl/include', 166 'third_party/wtl/include',
176 ], 167 ],
168 'sources': [
169 'renderer/command_buffer_proxy.cc',
170 'renderer/command_buffer_proxy.h',
171 ],
177 'conditions': [ 172 'conditions': [
178 ['win_use_allocator_shim==1', { 173 ['win_use_allocator_shim==1', {
179 'dependencies': [ 174 'dependencies': [
180 '<(allocator_target)', 175 '<(allocator_target)',
181 ], 176 ],
182 'export_dependent_settings': [ 177 'export_dependent_settings': [
183 '<(allocator_target)', 178 '<(allocator_target)',
184 ], 179 ],
185 }], 180 }],
186 ], 181 ],
187 }], 182 }],
188 ], 183 ],
189 }, 184 },
190 ], 185 ],
191 } 186 }
192 187
193 # Local Variables: 188 # Local Variables:
194 # tab-width:2 189 # tab-width:2
195 # indent-tabs-mode:nil 190 # indent-tabs-mode:nil
196 # End: 191 # End:
197 # vim: set expandtab tabstop=2 shiftwidth=2: 192 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « chrome/chrome.gyp ('k') | chrome/common/chrome_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698