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

Side by Side Diff: content/content_common.gypi

Issue 8620006: Reland 110355 - Use shared D3D9 texture to transport the compositor's backing buffer to the brows... (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') | ui/gfx/surface/accelerated_surface_win.cc » ('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) 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 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 'common/gpu/gpu_channel_manager.h', 134 'common/gpu/gpu_channel_manager.h',
135 'common/gpu/gpu_command_buffer_stub.cc', 135 'common/gpu/gpu_command_buffer_stub.cc',
136 'common/gpu/gpu_command_buffer_stub.h', 136 'common/gpu/gpu_command_buffer_stub.h',
137 'common/gpu/gpu_config.h', 137 'common/gpu/gpu_config.h',
138 'common/gpu/gpu_feature_flags.cc', 138 'common/gpu/gpu_feature_flags.cc',
139 'common/gpu/gpu_feature_flags.h', 139 'common/gpu/gpu_feature_flags.h',
140 'common/gpu/gpu_messages.h', 140 'common/gpu/gpu_messages.h',
141 'common/gpu/gpu_process_launch_causes.h', 141 'common/gpu/gpu_process_launch_causes.h',
142 'common/gpu/gpu_watchdog.h', 142 'common/gpu/gpu_watchdog.h',
143 'common/gpu/image_transport_surface.h', 143 'common/gpu/image_transport_surface.h',
144 'common/gpu/image_transport_surface.cc',
145 'common/gpu/image_transport_surface_linux.cc',
146 'common/gpu/image_transport_surface_mac.cc',
147 'common/gpu/image_transport_surface_win.cc',
144 'common/gpu/media/gpu_video_decode_accelerator.cc', 148 'common/gpu/media/gpu_video_decode_accelerator.cc',
145 'common/gpu/media/gpu_video_decode_accelerator.h', 149 'common/gpu/media/gpu_video_decode_accelerator.h',
146 'common/gpu/transport_texture.cc', 150 'common/gpu/transport_texture.cc',
147 'common/gpu/transport_texture.h', 151 'common/gpu/transport_texture.h',
148 'common/handle_enumerator_win.cc', 152 'common/handle_enumerator_win.cc',
149 'common/handle_enumerator_win.h', 153 'common/handle_enumerator_win.h',
150 'common/hi_res_timer_manager_posix.cc', 154 'common/hi_res_timer_manager_posix.cc',
151 'common/hi_res_timer_manager_win.cc', 155 'common/hi_res_timer_manager_win.cc',
152 'common/hi_res_timer_manager.h', 156 'common/hi_res_timer_manager.h',
153 'common/indexed_db_key.cc', 157 'common/indexed_db_key.cc',
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
263 ['OS!="win"', { 267 ['OS!="win"', {
264 'sources!': [ 268 'sources!': [
265 'common/sandbox_policy.cc', 269 'common/sandbox_policy.cc',
266 'common/sandbox_policy.h', 270 'common/sandbox_policy.h',
267 ], 271 ],
268 }], 272 }],
269 ['OS=="mac"', { 273 ['OS=="mac"', {
270 'sources!': [ 274 'sources!': [
271 'common/process_watcher_posix.cc', 275 'common/process_watcher_posix.cc',
272 ], 276 ],
273 'sources': [
274 'common/gpu/image_transport_surface.cc',
275 'common/gpu/image_transport_surface_mac.cc',
276 ],
277 'link_settings': { 277 'link_settings': {
278 'mac_bundle_resources': [ 278 'mac_bundle_resources': [
279 'common/common.sb', 279 'common/common.sb',
280 ], 280 ],
281 }, 281 },
282 }], 282 }],
283 ['toolkit_uses_gtk == 1', { 283 ['toolkit_uses_gtk == 1', {
284 'dependencies': [ 284 'dependencies': [
285 '../build/linux/system.gyp:gtk', 285 '../build/linux/system.gyp:gtk',
286 ], 286 ],
287 }], 287 }],
288 ['use_x11 == 1', { 288 ['use_x11 == 1', {
289 'dependencies': [ 289 'dependencies': [
290 '../build/linux/system.gyp:pangocairo', 290 '../build/linux/system.gyp:pangocairo',
291 ], 291 ],
292 }], 292 }],
293 ['use_x11 == 1 and target_arch != "arm"', { 293 ['use_x11 == 1 and target_arch != "arm"', {
294 'sources': [ 294 'sources': [
295 'common/gpu/x_util.cc', 295 'common/gpu/x_util.cc',
296 'common/gpu/x_util.h', 296 'common/gpu/x_util.h',
297 ], 297 ],
298 }], 298 }],
299 ['ui_compositor_image_transport==1', { 299 ['OS=="linux"', {
300 'sources': [
301 'common/gpu/image_transport_surface.cc',
302 'common/gpu/image_transport_surface_linux.cc',
303 ],
304 'include_dirs': [ 300 'include_dirs': [
305 '<(DEPTH)/third_party/angle/include', 301 '<(DEPTH)/third_party/angle/include',
306 ], 302 ],
307 'link_settings': { 303 'link_settings': {
308 'libraries': [ 304 'libraries': [
309 '-lXcomposite', 305 '-lXcomposite',
310 ], 306 ],
311 }, 307 },
312 }], 308 }],
313 ['enable_gpu==1', { 309 ['enable_gpu==1', {
(...skipping 17 matching lines...) Expand all
331 ], 327 ],
332 'link_settings': { 328 'link_settings': {
333 'libraries': [ 329 'libraries': [
334 '-lEGL', 330 '-lEGL',
335 '-lGLESv2', 331 '-lGLESv2',
336 ], 332 ],
337 }, 333 },
338 }], 334 }],
339 ], 335 ],
340 } 336 }
OLDNEW
« no previous file with comments | « content/content_browser.gypi ('k') | ui/gfx/surface/accelerated_surface_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698