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

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, 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 '../gpu/gpu.gyp:gles2_implementation', 9 '../gpu/gpu.gyp:gles2_implementation',
10 '../gpu/gpu.gyp:gpu_ipc', 10 '../gpu/gpu.gyp:gpu_ipc',
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
187 'common/gpu/gpu_memory_manager.h', 187 'common/gpu/gpu_memory_manager.h',
188 'common/gpu/gpu_messages.h', 188 'common/gpu/gpu_messages.h',
189 'common/gpu/gpu_process_launch_causes.h', 189 'common/gpu/gpu_process_launch_causes.h',
190 'common/gpu/gpu_watchdog.h', 190 'common/gpu/gpu_watchdog.h',
191 'common/gpu/image_transport_surface.h', 191 'common/gpu/image_transport_surface.h',
192 'common/gpu/image_transport_surface.cc', 192 'common/gpu/image_transport_surface.cc',
193 'common/gpu/image_transport_surface_android.cc', 193 'common/gpu/image_transport_surface_android.cc',
194 'common/gpu/image_transport_surface_linux.cc', 194 'common/gpu/image_transport_surface_linux.cc',
195 'common/gpu/image_transport_surface_mac.cc', 195 'common/gpu/image_transport_surface_mac.cc',
196 'common/gpu/image_transport_surface_win.cc', 196 'common/gpu/image_transport_surface_win.cc',
197 'common/gpu/media/avc_config_record_builder.cc',
198 'common/gpu/media/avc_config_record_builder.h',
199 'common/gpu/media/h264_parser.cc',
200 'common/gpu/media/h264_parser.h',
197 'common/gpu/media/mac_video_decode_accelerator.h', 201 'common/gpu/media/mac_video_decode_accelerator.h',
198 'common/gpu/media/mac_video_decode_accelerator.mm', 202 'common/gpu/media/mac_video_decode_accelerator.mm',
199 'common/gpu/media/gpu_video_decode_accelerator.cc', 203 'common/gpu/media/gpu_video_decode_accelerator.cc',
200 'common/gpu/media/gpu_video_decode_accelerator.h', 204 'common/gpu/media/gpu_video_decode_accelerator.h',
201 'common/gpu/texture_image_transport_surface.h', 205 'common/gpu/texture_image_transport_surface.h',
202 'common/gpu/texture_image_transport_surface.cc', 206 'common/gpu/texture_image_transport_surface.cc',
203 'common/handle_enumerator_win.cc', 207 'common/handle_enumerator_win.cc',
204 'common/handle_enumerator_win.h', 208 'common/handle_enumerator_win.h',
205 'common/hi_res_timer_manager_posix.cc', 209 'common/hi_res_timer_manager_posix.cc',
206 'common/hi_res_timer_manager_win.cc', 210 'common/hi_res_timer_manager_win.cc',
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
387 ], 391 ],
388 'link_settings': { 392 'link_settings': {
389 'libraries': [ 393 'libraries': [
390 '-lEGL', 394 '-lEGL',
391 '-lGLESv2', 395 '-lGLESv2',
392 ], 396 ],
393 }, 397 },
394 }], 398 }],
395 ['chromeos == 1', { 399 ['chromeos == 1', {
396 'sources': [ 400 'sources': [
397 'common/gpu/media/h264_parser.cc',
398 'common/gpu/media/h264_parser.h',
399 ],
400 }],
401 ['chromeos == 1', {
402 'sources': [
403 'common/gpu/media/h264_dpb.cc', 401 'common/gpu/media/h264_dpb.cc',
404 'common/gpu/media/h264_dpb.h', 402 'common/gpu/media/h264_dpb.h',
405 'common/gpu/media/vaapi_h264_decoder.cc', 403 'common/gpu/media/vaapi_h264_decoder.cc',
406 'common/gpu/media/vaapi_h264_decoder.h', 404 'common/gpu/media/vaapi_h264_decoder.h',
407 'common/gpu/media/vaapi_video_decode_accelerator.cc', 405 'common/gpu/media/vaapi_video_decode_accelerator.cc',
408 'common/gpu/media/vaapi_video_decode_accelerator.h', 406 'common/gpu/media/vaapi_video_decode_accelerator.h',
409 ], 407 ],
410 'include_dirs': [ 408 'include_dirs': [
411 '<(DEPTH)/third_party/libva', 409 '<(DEPTH)/third_party/libva',
412 ], 410 ],
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
466 '../build/extract_from_cab.py', 464 '../build/extract_from_cab.py',
467 '..\\third_party\\directxsdk\\files\\Redist\\<(input)', 465 '..\\third_party\\directxsdk\\files\\Redist\\<(input)',
468 '<(output)', 466 '<(output)',
469 '<(PRODUCT_DIR)', 467 '<(PRODUCT_DIR)',
470 ], 468 ],
471 }, 469 },
472 ] 470 ]
473 }] 471 }]
474 ], 472 ],
475 } 473 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698