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

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: . 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 474 matching lines...) Expand 10 before | Expand all | Expand 10 after
485 'sources!': [ 485 'sources!': [
486 'common/font_list.cc', 486 'common/font_list.cc',
487 'common/pepper_plugin_list.cc', 487 'common/pepper_plugin_list.cc',
488 'common/pepper_plugin_list.h', 488 'common/pepper_plugin_list.h',
489 'common/sandbox_util.cc', 489 'common/sandbox_util.cc',
490 ], 490 ],
491 }], 491 }],
492 ['OS=="android"', { 492 ['OS=="android"', {
493 'dependencies': [ 493 'dependencies': [
494 '../media/media.gyp:media', 494 '../media/media.gyp:media',
495 '../third_party/libyuv/libyuv.gyp:libyuv',
495 ], 496 ],
496 'sources': [ 497 'sources': [
497 'common/gpu/media/android_video_decode_accelerator.cc', 498 'common/gpu/media/android_video_decode_accelerator.cc',
498 'common/gpu/media/android_video_decode_accelerator.h', 499 'common/gpu/media/android_video_decode_accelerator.h',
500 'common/gpu/media/android_video_encode_accelerator.cc',
501 'common/gpu/media/android_video_encode_accelerator.h',
499 ], 502 ],
500 }], 503 }],
501 ['target_arch=="arm" and chromeos == 1 and use_x11 == 1', { 504 ['target_arch=="arm" and chromeos == 1 and use_x11 == 1', {
502 'dependencies': [ 505 'dependencies': [
503 '../media/media.gyp:media', 506 '../media/media.gyp:media',
504 ], 507 ],
505 'sources': [ 508 'sources': [
506 'common/gpu/media/exynos_video_decode_accelerator.cc', 509 'common/gpu/media/exynos_video_decode_accelerator.cc',
507 'common/gpu/media/exynos_video_decode_accelerator.h', 510 'common/gpu/media/exynos_video_decode_accelerator.h',
508 'common/gpu/media/exynos_video_encode_accelerator.cc', 511 'common/gpu/media/exynos_video_encode_accelerator.cc',
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
587 '..\\third_party\\directxsdk\\files\\Redist\\<(input)', 590 '..\\third_party\\directxsdk\\files\\Redist\\<(input)',
588 '<(output)', 591 '<(output)',
589 '<(PRODUCT_DIR)', 592 '<(PRODUCT_DIR)',
590 ], 593 ],
591 'msvs_cygwin_shell': 1, 594 'msvs_cygwin_shell': 1,
592 }, 595 },
593 ] 596 ]
594 }], 597 }],
595 ], 598 ],
596 } 599 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698