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

Side by Side Diff: content/content_common.gypi

Issue 8591006: 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') | 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 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 'common/gpu/gpu_channel_manager.h', 132 'common/gpu/gpu_channel_manager.h',
133 'common/gpu/gpu_command_buffer_stub.cc', 133 'common/gpu/gpu_command_buffer_stub.cc',
134 'common/gpu/gpu_command_buffer_stub.h', 134 'common/gpu/gpu_command_buffer_stub.h',
135 'common/gpu/gpu_config.h', 135 'common/gpu/gpu_config.h',
136 'common/gpu/gpu_feature_flags.cc', 136 'common/gpu/gpu_feature_flags.cc',
137 'common/gpu/gpu_feature_flags.h', 137 'common/gpu/gpu_feature_flags.h',
138 'common/gpu/gpu_messages.h', 138 'common/gpu/gpu_messages.h',
139 'common/gpu/gpu_process_launch_causes.h', 139 'common/gpu/gpu_process_launch_causes.h',
140 'common/gpu/gpu_watchdog.h', 140 'common/gpu/gpu_watchdog.h',
141 'common/gpu/image_transport_surface.h', 141 'common/gpu/image_transport_surface.h',
142 'common/gpu/image_transport_surface.cc',
143 'common/gpu/image_transport_surface_linux.cc',
144 'common/gpu/image_transport_surface_mac.cc',
145 'common/gpu/image_transport_surface_win.cc',
142 'common/gpu/media/gpu_video_decode_accelerator.cc', 146 'common/gpu/media/gpu_video_decode_accelerator.cc',
143 'common/gpu/media/gpu_video_decode_accelerator.h', 147 'common/gpu/media/gpu_video_decode_accelerator.h',
144 'common/gpu/transport_texture.cc', 148 'common/gpu/transport_texture.cc',
145 'common/gpu/transport_texture.h', 149 'common/gpu/transport_texture.h',
146 'common/handle_enumerator_win.cc', 150 'common/handle_enumerator_win.cc',
147 'common/handle_enumerator_win.h', 151 'common/handle_enumerator_win.h',
148 'common/hi_res_timer_manager_posix.cc', 152 'common/hi_res_timer_manager_posix.cc',
149 'common/hi_res_timer_manager_win.cc', 153 'common/hi_res_timer_manager_win.cc',
150 'common/hi_res_timer_manager.h', 154 'common/hi_res_timer_manager.h',
151 'common/indexed_db_key.cc', 155 'common/indexed_db_key.cc',
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
261 ['OS!="win"', { 265 ['OS!="win"', {
262 'sources!': [ 266 'sources!': [
263 'common/sandbox_policy.cc', 267 'common/sandbox_policy.cc',
264 'common/sandbox_policy.h', 268 'common/sandbox_policy.h',
265 ], 269 ],
266 }], 270 }],
267 ['OS=="mac"', { 271 ['OS=="mac"', {
268 'sources!': [ 272 'sources!': [
269 'common/process_watcher_posix.cc', 273 'common/process_watcher_posix.cc',
270 ], 274 ],
271 'sources': [
272 'common/gpu/image_transport_surface.cc',
273 'common/gpu/image_transport_surface_mac.cc',
274 ],
275 'link_settings': { 275 'link_settings': {
276 'mac_bundle_resources': [ 276 'mac_bundle_resources': [
277 'common/common.sb', 277 'common/common.sb',
278 ], 278 ],
279 }, 279 },
280 }], 280 }],
281 ['toolkit_uses_gtk == 1', { 281 ['toolkit_uses_gtk == 1', {
282 'dependencies': [ 282 'dependencies': [
283 '../build/linux/system.gyp:gtk', 283 '../build/linux/system.gyp:gtk',
284 ], 284 ],
285 }], 285 }],
286 ['use_x11 == 1', { 286 ['use_x11 == 1', {
287 'dependencies': [ 287 'dependencies': [
288 '../build/linux/system.gyp:pangocairo', 288 '../build/linux/system.gyp:pangocairo',
289 ], 289 ],
290 }], 290 }],
291 ['use_x11 == 1 and target_arch != "arm"', { 291 ['use_x11 == 1 and target_arch != "arm"', {
292 'sources': [ 292 'sources': [
293 'common/gpu/x_util.cc', 293 'common/gpu/x_util.cc',
294 'common/gpu/x_util.h', 294 'common/gpu/x_util.h',
295 ], 295 ],
296 }], 296 }],
297 ['ui_compositor_image_transport==1', { 297 ['OS=="linux"', {
298 'sources': [
299 'common/gpu/image_transport_surface.cc',
300 'common/gpu/image_transport_surface_linux.cc',
301 ],
302 'include_dirs': [ 298 'include_dirs': [
303 '<(DEPTH)/third_party/angle/include', 299 '<(DEPTH)/third_party/angle/include',
304 ], 300 ],
305 'link_settings': { 301 'link_settings': {
306 'libraries': [ 302 'libraries': [
307 '-lXcomposite', 303 '-lXcomposite',
308 ], 304 ],
309 }, 305 },
310 }], 306 }],
311 ['enable_gpu==1', { 307 ['enable_gpu==1', {
(...skipping 17 matching lines...) Expand all
329 ], 325 ],
330 'link_settings': { 326 'link_settings': {
331 'libraries': [ 327 'libraries': [
332 '-lEGL', 328 '-lEGL',
333 '-lGLESv2', 329 '-lGLESv2',
334 ], 330 ],
335 }, 331 },
336 }], 332 }],
337 ], 333 ],
338 } 334 }
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