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

Side by Side Diff: content/content_common.gypi

Issue 74563002: AndroidVideoEncodeAccelerator is born! (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added blacklist-based disabling Created 7 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
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 '../components/tracing.gyp:tracing', 8 '../components/tracing.gyp:tracing',
9 '../net/net.gyp:net', 9 '../net/net.gyp:net',
10 '../skia/skia.gyp:skia', 10 '../skia/skia.gyp:skia',
(...skipping 478 matching lines...) Expand 10 before | Expand all | Expand 10 after
489 'sources!': [ 489 'sources!': [
490 'common/font_list.cc', 490 'common/font_list.cc',
491 'common/pepper_plugin_list.cc', 491 'common/pepper_plugin_list.cc',
492 'common/pepper_plugin_list.h', 492 'common/pepper_plugin_list.h',
493 'common/sandbox_util.cc', 493 'common/sandbox_util.cc',
494 ], 494 ],
495 }], 495 }],
496 ['OS=="android"', { 496 ['OS=="android"', {
497 'dependencies': [ 497 'dependencies': [
498 '../media/media.gyp:media', 498 '../media/media.gyp:media',
499 '../third_party/libyuv/libyuv.gyp:libyuv',
499 ], 500 ],
500 'sources': [ 501 'sources': [
501 'common/gpu/media/android_video_decode_accelerator.cc', 502 'common/gpu/media/android_video_decode_accelerator.cc',
502 'common/gpu/media/android_video_decode_accelerator.h', 503 'common/gpu/media/android_video_decode_accelerator.h',
504 'common/gpu/media/android_video_encode_accelerator.cc',
505 'common/gpu/media/android_video_encode_accelerator.h',
503 ], 506 ],
504 }], 507 }],
505 ['target_arch=="arm" and chromeos == 1 and use_x11 == 1', { 508 ['target_arch=="arm" and chromeos == 1 and use_x11 == 1', {
506 'dependencies': [ 509 'dependencies': [
507 '../media/media.gyp:media', 510 '../media/media.gyp:media',
508 ], 511 ],
509 'sources': [ 512 'sources': [
510 'common/gpu/media/exynos_video_decode_accelerator.cc', 513 'common/gpu/media/exynos_video_decode_accelerator.cc',
511 'common/gpu/media/exynos_video_decode_accelerator.h', 514 'common/gpu/media/exynos_video_decode_accelerator.h',
512 'common/gpu/media/exynos_video_encode_accelerator.cc', 515 'common/gpu/media/exynos_video_encode_accelerator.cc',
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
591 '..\\third_party\\directxsdk\\files\\Redist\\<(input)', 594 '..\\third_party\\directxsdk\\files\\Redist\\<(input)',
592 '<(output)', 595 '<(output)',
593 '<(PRODUCT_DIR)', 596 '<(PRODUCT_DIR)',
594 ], 597 ],
595 'msvs_cygwin_shell': 1, 598 'msvs_cygwin_shell': 1,
596 }, 599 },
597 ] 600 ]
598 }], 601 }],
599 ], 602 ],
600 } 603 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698