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

Side by Side Diff: chrome/chrome_renderer.gypi

Issue 465040: Added CommandBufferClient, CommandBufferStub and some IPC messages.... (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/command_buffer_messages.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_pepper==1', { 151 ['enable_gpu==1', {
152 'dependencies': [ 152 'dependencies': [
153 '../gpu/gpu.gyp:gpu_plugin', 153 '../gpu/gpu.gyp:gpu_plugin',
154 ], 154 ],
155 'sources': [
156 'renderer/command_buffer_proxy.cc',
157 'renderer/command_buffer_proxy.h',
158 ],
155 }], 159 }],
156 ['disable_nacl!=1', { 160 ['disable_nacl!=1', {
157 'dependencies': [ 161 'dependencies': [
158 'nacl', 162 'nacl',
159 ], 163 ],
160 }], 164 }],
161 # Linux-specific rules. 165 # Linux-specific rules.
162 ['OS=="linux"', { 166 ['OS=="linux"', {
163 'dependencies': [ 167 'dependencies': [
164 '../build/linux/system.gyp:gtk', 168 '../build/linux/system.gyp:gtk',
(...skipping 19 matching lines...) Expand all
184 ], 188 ],
185 }, 189 },
186 ], 190 ],
187 } 191 }
188 192
189 # Local Variables: 193 # Local Variables:
190 # tab-width:2 194 # tab-width:2
191 # indent-tabs-mode:nil 195 # indent-tabs-mode:nil
192 # End: 196 # End:
193 # vim: set expandtab tabstop=2 shiftwidth=2: 197 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « chrome/chrome.gyp ('k') | chrome/common/command_buffer_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698