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

Side by Side Diff: content/content_common.gypi

Issue 8558008: Revert 110626 - 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/surface.gyp » ('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',
148 'common/gpu/media/gpu_video_decode_accelerator.cc', 144 'common/gpu/media/gpu_video_decode_accelerator.cc',
149 'common/gpu/media/gpu_video_decode_accelerator.h', 145 'common/gpu/media/gpu_video_decode_accelerator.h',
150 'common/gpu/transport_texture.cc', 146 'common/gpu/transport_texture.cc',
151 'common/gpu/transport_texture.h', 147 'common/gpu/transport_texture.h',
152 'common/handle_enumerator_win.cc', 148 'common/handle_enumerator_win.cc',
153 'common/handle_enumerator_win.h', 149 'common/handle_enumerator_win.h',
154 'common/hi_res_timer_manager_posix.cc', 150 'common/hi_res_timer_manager_posix.cc',
155 'common/hi_res_timer_manager_win.cc', 151 'common/hi_res_timer_manager_win.cc',
156 'common/hi_res_timer_manager.h', 152 'common/hi_res_timer_manager.h',
157 'common/indexed_db_key.cc', 153 'common/indexed_db_key.cc',
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
267 ['OS!="win"', { 263 ['OS!="win"', {
268 'sources!': [ 264 'sources!': [
269 'common/sandbox_policy.cc', 265 'common/sandbox_policy.cc',
270 'common/sandbox_policy.h', 266 'common/sandbox_policy.h',
271 ], 267 ],
272 }], 268 }],
273 ['OS=="mac"', { 269 ['OS=="mac"', {
274 'sources!': [ 270 'sources!': [
275 'common/process_watcher_posix.cc', 271 'common/process_watcher_posix.cc',
276 ], 272 ],
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 ['OS=="linux"', { 299 ['ui_compositor_image_transport==1', {
300 'sources': [
301 'common/gpu/image_transport_surface.cc',
302 'common/gpu/image_transport_surface_linux.cc',
303 ],
300 'include_dirs': [ 304 'include_dirs': [
301 '<(DEPTH)/third_party/angle/include', 305 '<(DEPTH)/third_party/angle/include',
302 ], 306 ],
303 'link_settings': { 307 'link_settings': {
304 'libraries': [ 308 'libraries': [
305 '-lXcomposite', 309 '-lXcomposite',
306 ], 310 ],
307 }, 311 },
308 }], 312 }],
309 ['enable_gpu==1', { 313 ['enable_gpu==1', {
(...skipping 17 matching lines...) Expand all
327 ], 331 ],
328 'link_settings': { 332 'link_settings': {
329 'libraries': [ 333 'libraries': [
330 '-lEGL', 334 '-lEGL',
331 '-lGLESv2', 335 '-lGLESv2',
332 ], 336 ],
333 }, 337 },
334 }], 338 }],
335 ], 339 ],
336 } 340 }
OLDNEW
« no previous file with comments | « content/content_browser.gypi ('k') | ui/gfx/surface/surface.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698