| 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 585 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 596 ], | 596 ], |
| 597 }, | 597 }, |
| 598 { | 598 { |
| 599 'target_name': 'content_shell_apk', | 599 'target_name': 'content_shell_apk', |
| 600 'type': 'none', | 600 'type': 'none', |
| 601 'dependencies': [ | 601 'dependencies': [ |
| 602 'content_java', | 602 'content_java', |
| 603 '../base/base.gyp:base_java', | 603 '../base/base.gyp:base_java', |
| 604 '../media/media.gyp:media_java', | 604 '../media/media.gyp:media_java', |
| 605 '../net/net.gyp:net_java', | 605 '../net/net.gyp:net_java', |
| 606 '../ui/ui.gyp:ui_java', |
| 606 ], | 607 ], |
| 607 'actions': [ | 608 'actions': [ |
| 608 { | 609 { |
| 609 'action_name': 'copy_and_strip_so', | 610 'action_name': 'copy_and_strip_so', |
| 610 'inputs': ['<(SHARED_LIB_DIR)/libcontent_shell_content_view.so'], | 611 'inputs': ['<(SHARED_LIB_DIR)/libcontent_shell_content_view.so'], |
| 611 'outputs': ['<(PRODUCT_DIR)/content_shell/libs/<(android_app_abi)/
libcontent_shell_content_view.so'], | 612 'outputs': ['<(PRODUCT_DIR)/content_shell/libs/<(android_app_abi)/
libcontent_shell_content_view.so'], |
| 612 'action': [ | 613 'action': [ |
| 613 '<(android_strip)', | 614 '<(android_strip)', |
| 614 '--strip-unneeded', # All symbols not needed for relocation. | 615 '--strip-unneeded', # All symbols not needed for relocation. |
| 615 '<@(_inputs)', | 616 '<@(_inputs)', |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 654 '-buildfile', | 655 '-buildfile', |
| 655 'shell/android/java/content_shell_apk.xml', | 656 'shell/android/java/content_shell_apk.xml', |
| 656 ], | 657 ], |
| 657 } | 658 } |
| 658 ], | 659 ], |
| 659 }, | 660 }, |
| 660 ], | 661 ], |
| 661 }], # OS=="android" | 662 }], # OS=="android" |
| 662 ] | 663 ] |
| 663 } | 664 } |
| OLD | NEW |