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

Side by Side Diff: content/content_common.gypi

Issue 10411085: Build AVC decoder configuration record (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years, 6 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 '../gpu/gpu.gyp:gles2_implementation', 9 '../gpu/gpu.gyp:gles2_implementation',
10 '../gpu/gpu.gyp:gpu_ipc', 10 '../gpu/gpu.gyp:gpu_ipc',
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after
190 'common/gpu/gpu_memory_manager.h', 190 'common/gpu/gpu_memory_manager.h',
191 'common/gpu/gpu_messages.h', 191 'common/gpu/gpu_messages.h',
192 'common/gpu/gpu_process_launch_causes.h', 192 'common/gpu/gpu_process_launch_causes.h',
193 'common/gpu/gpu_watchdog.h', 193 'common/gpu/gpu_watchdog.h',
194 'common/gpu/image_transport_surface.h', 194 'common/gpu/image_transport_surface.h',
195 'common/gpu/image_transport_surface.cc', 195 'common/gpu/image_transport_surface.cc',
196 'common/gpu/image_transport_surface_android.cc', 196 'common/gpu/image_transport_surface_android.cc',
197 'common/gpu/image_transport_surface_linux.cc', 197 'common/gpu/image_transport_surface_linux.cc',
198 'common/gpu/image_transport_surface_mac.cc', 198 'common/gpu/image_transport_surface_mac.cc',
199 'common/gpu/image_transport_surface_win.cc', 199 'common/gpu/image_transport_surface_win.cc',
200 'common/gpu/media/avc_config_record_builder.cc',
201 'common/gpu/media/avc_config_record_builder.h',
202 'common/gpu/media/h264_parser.cc',
203 'common/gpu/media/h264_parser.h',
200 'common/gpu/media/mac_video_decode_accelerator.h', 204 'common/gpu/media/mac_video_decode_accelerator.h',
201 'common/gpu/media/mac_video_decode_accelerator.mm', 205 'common/gpu/media/mac_video_decode_accelerator.mm',
202 'common/gpu/media/gpu_video_decode_accelerator.cc', 206 'common/gpu/media/gpu_video_decode_accelerator.cc',
203 'common/gpu/media/gpu_video_decode_accelerator.h', 207 'common/gpu/media/gpu_video_decode_accelerator.h',
204 'common/gpu/texture_image_transport_surface.h', 208 'common/gpu/texture_image_transport_surface.h',
205 'common/gpu/texture_image_transport_surface.cc', 209 'common/gpu/texture_image_transport_surface.cc',
206 'common/handle_enumerator_win.cc', 210 'common/handle_enumerator_win.cc',
207 'common/handle_enumerator_win.h', 211 'common/handle_enumerator_win.h',
208 'common/hi_res_timer_manager_posix.cc', 212 'common/hi_res_timer_manager_posix.cc',
209 'common/hi_res_timer_manager_win.cc', 213 'common/hi_res_timer_manager_win.cc',
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
392 '<(DEPTH)/third_party/angle/include', 396 '<(DEPTH)/third_party/angle/include',
393 '<(DEPTH)/third_party/openmax/il', 397 '<(DEPTH)/third_party/openmax/il',
394 ], 398 ],
395 'link_settings': { 399 'link_settings': {
396 'libraries': [ 400 'libraries': [
397 '-lEGL', 401 '-lEGL',
398 '-lGLESv2', 402 '-lGLESv2',
399 ], 403 ],
400 }, 404 },
401 }], 405 }],
402 ['chromeos == 1', {
403 'sources': [
404 'common/gpu/media/h264_parser.cc',
405 'common/gpu/media/h264_parser.h',
406 ],
407 }],
408 ['OS=="win"', { 406 ['OS=="win"', {
409 'dependencies': [ 407 'dependencies': [
410 '../media/media.gyp:media', 408 '../media/media.gyp:media',
411 '../ui/gl/gl.gyp:gl', 409 '../ui/gl/gl.gyp:gl',
412 ], 410 ],
413 'link_settings': { 411 'link_settings': {
414 'libraries': [ 412 'libraries': [
415 '-ld3d9.lib', 413 '-ld3d9.lib',
416 '-ld3dx9.lib', 414 '-ld3dx9.lib',
417 '-ldxva2.lib', 415 '-ldxva2.lib',
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
460 '../build/extract_from_cab.py', 458 '../build/extract_from_cab.py',
461 '..\\third_party\\directxsdk\\files\\Redist\\<(input)', 459 '..\\third_party\\directxsdk\\files\\Redist\\<(input)',
462 '<(output)', 460 '<(output)',
463 '<(PRODUCT_DIR)', 461 '<(PRODUCT_DIR)',
464 ], 462 ],
465 }, 463 },
466 ] 464 ]
467 }] 465 }]
468 ], 466 ],
469 } 467 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698