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

Side by Side Diff: content/content_common.gypi

Issue 14985005: Support for ozone graphics in content and gpu/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: freshened patch Created 7 years, 7 months 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
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 '../components/tracing.gyp:tracing', 9 '../components/tracing.gyp:tracing',
10 '../media/media.gyp:media', 10 '../media/media.gyp:media',
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after
236 'common/gpu/gpu_rendering_stats.h', 236 'common/gpu/gpu_rendering_stats.h',
237 'common/gpu/gpu_surface_lookup.h', 237 'common/gpu/gpu_surface_lookup.h',
238 'common/gpu/gpu_surface_lookup.cc', 238 'common/gpu/gpu_surface_lookup.cc',
239 'common/gpu/stream_texture_manager_android.cc', 239 'common/gpu/stream_texture_manager_android.cc',
240 'common/gpu/stream_texture_manager_android.h', 240 'common/gpu/stream_texture_manager_android.h',
241 'common/gpu/gpu_watchdog.h', 241 'common/gpu/gpu_watchdog.h',
242 'common/gpu/image_transport_surface.h', 242 'common/gpu/image_transport_surface.h',
243 'common/gpu/image_transport_surface.cc', 243 'common/gpu/image_transport_surface.cc',
244 'common/gpu/image_transport_surface_android.cc', 244 'common/gpu/image_transport_surface_android.cc',
245 'common/gpu/image_transport_surface_mac.cc', 245 'common/gpu/image_transport_surface_mac.cc',
246 'common/gpu/image_transport_surface_ozone.cc',
246 'common/gpu/image_transport_surface_win.cc', 247 'common/gpu/image_transport_surface_win.cc',
247 'common/gpu/image_transport_surface_x11.cc', 248 'common/gpu/image_transport_surface_x11.cc',
248 'common/gpu/media/h264_bit_reader.cc', 249 'common/gpu/media/h264_bit_reader.cc',
249 'common/gpu/media/h264_bit_reader.h', 250 'common/gpu/media/h264_bit_reader.h',
250 'common/gpu/media/h264_parser.cc', 251 'common/gpu/media/h264_parser.cc',
251 'common/gpu/media/h264_parser.h', 252 'common/gpu/media/h264_parser.h',
252 'common/gpu/media/gpu_video_decode_accelerator.cc', 253 'common/gpu/media/gpu_video_decode_accelerator.cc',
253 'common/gpu/media/gpu_video_decode_accelerator.h', 254 'common/gpu/media/gpu_video_decode_accelerator.h',
254 'common/gpu/sync_point_manager.h', 255 'common/gpu/sync_point_manager.h',
255 'common/gpu/sync_point_manager.cc', 256 'common/gpu/sync_point_manager.cc',
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
375 'common/zygote_commands_linux.h', 376 'common/zygote_commands_linux.h',
376 'port/common/input_event_ack_state.h', 377 'port/common/input_event_ack_state.h',
377 'public/common/common_param_traits.cc', 378 'public/common/common_param_traits.cc',
378 'public/common/common_param_traits.h', 379 'public/common/common_param_traits.h',
379 'public/common/common_param_traits_macros.h', 380 'public/common/common_param_traits_macros.h',
380 'public/common/content_client.cc', 381 'public/common/content_client.cc',
381 'public/common/content_client.h', 382 'public/common/content_client.h',
382 'public/common/window_container_type.cc', 383 'public/common/window_container_type.cc',
383 'public/common/window_container_type.h', 384 'public/common/window_container_type.h',
384 ], 385 ],
386 'target_conditions': [
387 ['<(use_ozone)==1', {
388 'sources/': [
389 ['include', '^common/font_list_x11\\.cc$'],
390 ],
391 }],
392 ],
385 'conditions': [ 393 'conditions': [
386 ['OS=="ios"', { 394 ['OS=="ios"', {
387 'sources/': [ 395 'sources/': [
388 # iOS only needs a small portion of content; exclude all the 396 # iOS only needs a small portion of content; exclude all the
389 # implementation, and re-include what is used. 397 # implementation, and re-include what is used.
390 ['exclude', '\\.(cc|mm)$'], 398 ['exclude', '\\.(cc|mm)$'],
391 ['include', '_ios\\.(cc|mm)$'], 399 ['include', '_ios\\.(cc|mm)$'],
392 ['include', '^public/common/content_client\\.cc$'], 400 ['include', '^public/common/content_client\\.cc$'],
393 ['include', '^public/common/content_constants\\.cc$'], 401 ['include', '^public/common/content_constants\\.cc$'],
394 ['include', '^public/common/content_switches\\.cc$'], 402 ['include', '^public/common/content_switches\\.cc$'],
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
430 'dependencies': [ 438 'dependencies': [
431 'content.gyp:content_jni_headers', 439 'content.gyp:content_jni_headers',
432 'content.gyp:common_aidl', 440 'content.gyp:common_aidl',
433 ], 441 ],
434 }], 442 }],
435 ['toolkit_uses_gtk == 1', { 443 ['toolkit_uses_gtk == 1', {
436 'dependencies': [ 444 'dependencies': [
437 '../build/linux/system.gyp:gtk', 445 '../build/linux/system.gyp:gtk',
438 ], 446 ],
439 }], 447 }],
440 ['OS=="linux"', { 448 ['OS=="linux"', {
441 'dependencies': [ 449 'dependencies': [
442 '../build/linux/system.gyp:pangocairo', 450 '../build/linux/system.gyp:pangocairo',
443 ], 451 ],
444 }], 452 }],
445 ['use_x11 == 1', { 453 ['use_x11 == 1', {
446 'include_dirs': [ 454 'include_dirs': [
447 '<(DEPTH)/third_party/khronos', 455 '<(DEPTH)/third_party/khronos',
448 ], 456 ],
449 'link_settings': { 457 'link_settings': {
450 'libraries': [ 458 'libraries': [
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
576 '..\\third_party\\directxsdk\\files\\Redist\\<(input)', 584 '..\\third_party\\directxsdk\\files\\Redist\\<(input)',
577 '<(output)', 585 '<(output)',
578 '<(PRODUCT_DIR)', 586 '<(PRODUCT_DIR)',
579 ], 587 ],
580 'msvs_cygwin_shell': 1, 588 'msvs_cygwin_shell': 1,
581 }, 589 },
582 ] 590 ]
583 }], 591 }],
584 ], 592 ],
585 } 593 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698