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

Side by Side Diff: content/content_common.gypi

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