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

Side by Side Diff: content/content_shell.gypi

Issue 10821013: Get audio/video tag working in content_shell by copying the ffmpeg binary to the framework. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 5 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 'variables': { 6 'variables': {
7 'content_shell_product_name': 'Content Shell', 7 'content_shell_product_name': 'Content Shell',
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 399 matching lines...) Expand 10 before | Expand all | Expand 10 after
410 'dependencies': [ 410 'dependencies': [
411 'content_shell_lib', 411 'content_shell_lib',
412 ], 412 ],
413 'include_dirs': [ 413 'include_dirs': [
414 '..', 414 '..',
415 ], 415 ],
416 'sources': [ 416 'sources': [
417 'shell/shell_content_main.cc', 417 'shell/shell_content_main.cc',
418 'shell/shell_content_main.h', 418 'shell/shell_content_main.h',
419 ], 419 ],
420 'copies': [
421 {
422 # Copy FFmpeg binaries for audio/video support.
423 'destination': '<(PRODUCT_DIR)/$(CONTENTS_FOLDER_PATH)/Libraries',
424 'files': [
425 '<(PRODUCT_DIR)/ffmpegsumo.so',
426 ],
427 },
428 ],
420 }, # target content_shell_framework 429 }, # target content_shell_framework
421 { 430 {
422 'target_name': 'content_shell_helper_app', 431 'target_name': 'content_shell_helper_app',
423 'type': 'executable', 432 'type': 'executable',
424 'variables': { 'enable_wexit_time_destructors': 1, }, 433 'variables': { 'enable_wexit_time_destructors': 1, },
425 'product_name': '<(content_shell_product_name) Helper', 434 'product_name': '<(content_shell_product_name) Helper',
426 'mac_bundle': 1, 435 'mac_bundle': 1,
427 'dependencies': [ 436 'dependencies': [
428 'content_shell_framework', 437 'content_shell_framework',
429 ], 438 ],
(...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after
644 '-buildfile', 653 '-buildfile',
645 '<(DEPTH)/content/shell/android/javatests/content_shell_test_apk .xml', 654 '<(DEPTH)/content/shell/android/javatests/content_shell_test_apk .xml',
646 ] 655 ]
647 } 656 }
648 ], 657 ],
649 }, 658 },
650 ], 659 ],
651 }], # OS=="android" 660 }], # OS=="android"
652 ] 661 ]
653 } 662 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698