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

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 175 matching lines...) Expand 10 before | Expand all | Expand 10 after
186 'common/gpu/gpu_memory_manager.h', 186 'common/gpu/gpu_memory_manager.h',
187 'common/gpu/gpu_messages.h', 187 'common/gpu/gpu_messages.h',
188 'common/gpu/gpu_process_launch_causes.h', 188 'common/gpu/gpu_process_launch_causes.h',
189 'common/gpu/gpu_watchdog.h', 189 'common/gpu/gpu_watchdog.h',
190 'common/gpu/image_transport_surface.h', 190 'common/gpu/image_transport_surface.h',
191 'common/gpu/image_transport_surface.cc', 191 'common/gpu/image_transport_surface.cc',
192 'common/gpu/image_transport_surface_android.cc', 192 'common/gpu/image_transport_surface_android.cc',
193 'common/gpu/image_transport_surface_linux.cc', 193 'common/gpu/image_transport_surface_linux.cc',
194 'common/gpu/image_transport_surface_mac.cc', 194 'common/gpu/image_transport_surface_mac.cc',
195 'common/gpu/image_transport_surface_win.cc', 195 'common/gpu/image_transport_surface_win.cc',
196 'common/gpu/media/avc_config_record_builder.cc',
197 'common/gpu/media/avc_config_record_builder.h',
198 'common/gpu/media/h264_parser.cc',
199 'common/gpu/media/h264_parser.h',
196 'common/gpu/media/mac_video_decode_accelerator.h', 200 'common/gpu/media/mac_video_decode_accelerator.h',
197 'common/gpu/media/mac_video_decode_accelerator.mm', 201 'common/gpu/media/mac_video_decode_accelerator.mm',
198 'common/gpu/media/gpu_video_decode_accelerator.cc', 202 'common/gpu/media/gpu_video_decode_accelerator.cc',
199 'common/gpu/media/gpu_video_decode_accelerator.h', 203 'common/gpu/media/gpu_video_decode_accelerator.h',
200 'common/gpu/texture_image_transport_surface.h', 204 'common/gpu/texture_image_transport_surface.h',
201 'common/gpu/texture_image_transport_surface.cc', 205 'common/gpu/texture_image_transport_surface.cc',
202 'common/handle_enumerator_win.cc', 206 'common/handle_enumerator_win.cc',
203 'common/handle_enumerator_win.h', 207 'common/handle_enumerator_win.h',
204 'common/hi_res_timer_manager_posix.cc', 208 'common/hi_res_timer_manager_posix.cc',
205 'common/hi_res_timer_manager_win.cc', 209 'common/hi_res_timer_manager_win.cc',
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after
384 '<(DEPTH)/third_party/angle/include', 388 '<(DEPTH)/third_party/angle/include',
385 '<(DEPTH)/third_party/openmax/il', 389 '<(DEPTH)/third_party/openmax/il',
386 ], 390 ],
387 'link_settings': { 391 'link_settings': {
388 'libraries': [ 392 'libraries': [
389 '-lEGL', 393 '-lEGL',
390 '-lGLESv2', 394 '-lGLESv2',
391 ], 395 ],
392 }, 396 },
393 }], 397 }],
394 ['chromeos == 1', {
395 'sources': [
396 'common/gpu/media/h264_parser.cc',
397 'common/gpu/media/h264_parser.h',
398 ],
399 }],
400 ['OS=="win"', { 398 ['OS=="win"', {
401 'dependencies': [ 399 'dependencies': [
402 '../media/media.gyp:media', 400 '../media/media.gyp:media',
403 '../ui/gl/gl.gyp:gl', 401 '../ui/gl/gl.gyp:gl',
404 ], 402 ],
405 'link_settings': { 403 'link_settings': {
406 'libraries': [ 404 'libraries': [
407 '-ld3d9.lib', 405 '-ld3d9.lib',
408 '-ld3dx9.lib', 406 '-ld3dx9.lib',
409 '-ldxva2.lib', 407 '-ldxva2.lib',
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
452 '../build/extract_from_cab.py', 450 '../build/extract_from_cab.py',
453 '..\\third_party\\directxsdk\\files\\Redist\\<(input)', 451 '..\\third_party\\directxsdk\\files\\Redist\\<(input)',
454 '<(output)', 452 '<(output)',
455 '<(PRODUCT_DIR)', 453 '<(PRODUCT_DIR)',
456 ], 454 ],
457 }, 455 },
458 ] 456 ]
459 }] 457 }]
460 ], 458 ],
461 } 459 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698