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

Side by Side Diff: content/content_common.gypi

Issue 8060045: Use shared D3D9 texture to transport the compositor's backing buffer to the browser... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 1 month 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 | « content/content_browser.gypi ('k') | no next file » | 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) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 'dependencies': [ 6 'dependencies': [
7 '../base/base.gyp:base', 7 '../base/base.gyp:base',
8 '../build/temp_gyp/googleurl.gyp:googleurl', 8 '../build/temp_gyp/googleurl.gyp:googleurl',
9 '../gpu/gpu.gyp:gpu_ipc', 9 '../gpu/gpu.gyp:gpu_ipc',
10 '../ipc/ipc.gyp:ipc', 10 '../ipc/ipc.gyp:ipc',
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 'common/gpu/gpu_channel_manager.h', 130 'common/gpu/gpu_channel_manager.h',
131 'common/gpu/gpu_command_buffer_stub.cc', 131 'common/gpu/gpu_command_buffer_stub.cc',
132 'common/gpu/gpu_command_buffer_stub.h', 132 'common/gpu/gpu_command_buffer_stub.h',
133 'common/gpu/gpu_config.h', 133 'common/gpu/gpu_config.h',
134 'common/gpu/gpu_feature_flags.cc', 134 'common/gpu/gpu_feature_flags.cc',
135 'common/gpu/gpu_feature_flags.h', 135 'common/gpu/gpu_feature_flags.h',
136 'common/gpu/gpu_messages.h', 136 'common/gpu/gpu_messages.h',
137 'common/gpu/gpu_process_launch_causes.h', 137 'common/gpu/gpu_process_launch_causes.h',
138 'common/gpu/gpu_watchdog.h', 138 'common/gpu/gpu_watchdog.h',
139 'common/gpu/image_transport_surface.h', 139 'common/gpu/image_transport_surface.h',
140 'common/gpu/image_transport_surface.cc',
141 'common/gpu/image_transport_surface_linux.cc',
142 'common/gpu/image_transport_surface_mac.cc',
143 'common/gpu/image_transport_surface_win.cc',
140 'common/gpu/media/gpu_video_decode_accelerator.cc', 144 'common/gpu/media/gpu_video_decode_accelerator.cc',
141 'common/gpu/media/gpu_video_decode_accelerator.h', 145 'common/gpu/media/gpu_video_decode_accelerator.h',
142 'common/gpu/transport_texture.cc', 146 'common/gpu/transport_texture.cc',
143 'common/gpu/transport_texture.h', 147 'common/gpu/transport_texture.h',
144 'common/handle_enumerator_win.cc', 148 'common/handle_enumerator_win.cc',
145 'common/handle_enumerator_win.h', 149 'common/handle_enumerator_win.h',
146 'common/hi_res_timer_manager_posix.cc', 150 'common/hi_res_timer_manager_posix.cc',
147 'common/hi_res_timer_manager_win.cc', 151 'common/hi_res_timer_manager_win.cc',
148 'common/hi_res_timer_manager.h', 152 'common/hi_res_timer_manager.h',
149 'common/indexed_db_key.cc', 153 'common/indexed_db_key.cc',
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
257 ['OS!="win"', { 261 ['OS!="win"', {
258 'sources!': [ 262 'sources!': [
259 'common/sandbox_policy.cc', 263 'common/sandbox_policy.cc',
260 'common/sandbox_policy.h', 264 'common/sandbox_policy.h',
261 ], 265 ],
262 }], 266 }],
263 ['OS=="mac"', { 267 ['OS=="mac"', {
264 'sources!': [ 268 'sources!': [
265 'common/process_watcher_posix.cc', 269 'common/process_watcher_posix.cc',
266 ], 270 ],
267 'sources': [
268 'common/gpu/image_transport_surface.cc',
269 'common/gpu/image_transport_surface_mac.cc',
270 ],
271 'link_settings': { 271 'link_settings': {
272 'mac_bundle_resources': [ 272 'mac_bundle_resources': [
273 'common/common.sb', 273 'common/common.sb',
274 ], 274 ],
275 }, 275 },
276 }], 276 }],
277 ['toolkit_uses_gtk == 1', { 277 ['toolkit_uses_gtk == 1', {
278 'dependencies': [ 278 'dependencies': [
279 '../build/linux/system.gyp:gtk', 279 '../build/linux/system.gyp:gtk',
280 ], 280 ],
281 }], 281 }],
282 ['use_x11 == 1', { 282 ['use_x11 == 1', {
283 'dependencies': [ 283 'dependencies': [
284 '../build/linux/system.gyp:pangocairo', 284 '../build/linux/system.gyp:pangocairo',
285 ], 285 ],
286 }], 286 }],
287 ['use_x11 == 1 and target_arch != "arm"', { 287 ['use_x11 == 1 and target_arch != "arm"', {
288 'sources': [ 288 'sources': [
289 'common/gpu/x_util.cc', 289 'common/gpu/x_util.cc',
290 'common/gpu/x_util.h', 290 'common/gpu/x_util.h',
291 ], 291 ],
292 }], 292 }],
293 ['ui_compositor_image_transport==1', { 293 ['OS=="linux"', {
294 'sources': [
295 'common/gpu/image_transport_surface.cc',
296 'common/gpu/image_transport_surface_linux.cc',
297 ],
298 'include_dirs': [ 294 'include_dirs': [
299 '<(DEPTH)/third_party/angle/include', 295 '<(DEPTH)/third_party/angle/include',
300 ], 296 ],
301 'link_settings': { 297 'link_settings': {
302 'libraries': [ 298 'libraries': [
303 '-lXcomposite', 299 '-lXcomposite',
304 ], 300 ],
305 }, 301 },
306 }], 302 }],
307 ['enable_gpu==1', { 303 ['enable_gpu==1', {
(...skipping 17 matching lines...) Expand all
325 ], 321 ],
326 'link_settings': { 322 'link_settings': {
327 'libraries': [ 323 'libraries': [
328 '-lEGL', 324 '-lEGL',
329 '-lGLESv2', 325 '-lGLESv2',
330 ], 326 ],
331 }, 327 },
332 }], 328 }],
333 ], 329 ],
334 } 330 }
OLDNEW
« no previous file with comments | « content/content_browser.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698