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

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: kbr comments. Created 7 years 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 479 matching lines...) Expand 10 before | Expand all | Expand 10 after
490 'sources!': [ 490 'sources!': [
491 'common/font_list.cc', 491 'common/font_list.cc',
492 'common/pepper_plugin_list.cc', 492 'common/pepper_plugin_list.cc',
493 'common/pepper_plugin_list.h', 493 'common/pepper_plugin_list.h',
494 'common/sandbox_util.cc', 494 'common/sandbox_util.cc',
495 ], 495 ],
496 }], 496 }],
497 ['OS=="android"', { 497 ['OS=="android"', {
498 'dependencies': [ 498 'dependencies': [
499 '../media/media.gyp:media', 499 '../media/media.gyp:media',
500 '../third_party/libyuv/libyuv.gyp:libyuv',
500 ], 501 ],
501 'sources': [ 502 'sources': [
502 'common/gpu/media/android_video_decode_accelerator.cc', 503 'common/gpu/media/android_video_decode_accelerator.cc',
503 'common/gpu/media/android_video_decode_accelerator.h', 504 'common/gpu/media/android_video_decode_accelerator.h',
505 'common/gpu/media/android_video_encode_accelerator.cc',
506 'common/gpu/media/android_video_encode_accelerator.h',
504 ], 507 ],
505 }], 508 }],
506 ['target_arch=="arm" and chromeos == 1 and use_x11 == 1', { 509 ['target_arch=="arm" and chromeos == 1 and use_x11 == 1', {
507 'dependencies': [ 510 'dependencies': [
508 '../media/media.gyp:media', 511 '../media/media.gyp:media',
509 ], 512 ],
510 'sources': [ 513 'sources': [
511 'common/gpu/media/exynos_video_decode_accelerator.cc', 514 'common/gpu/media/exynos_video_decode_accelerator.cc',
512 'common/gpu/media/exynos_video_decode_accelerator.h', 515 'common/gpu/media/exynos_video_decode_accelerator.h',
513 'common/gpu/media/exynos_video_encode_accelerator.cc', 516 'common/gpu/media/exynos_video_encode_accelerator.cc',
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
592 '..\\third_party\\directxsdk\\files\\Redist\\<(input)', 595 '..\\third_party\\directxsdk\\files\\Redist\\<(input)',
593 '<(output)', 596 '<(output)',
594 '<(PRODUCT_DIR)', 597 '<(PRODUCT_DIR)',
595 ], 598 ],
596 'msvs_cygwin_shell': 1, 599 'msvs_cygwin_shell': 1,
597 }, 600 },
598 ] 601 ]
599 }], 602 }],
600 ], 603 ],
601 } 604 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698