OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |