| 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 597 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 608 'action_name': 'copy_content_jar', | 608 'action_name': 'copy_content_jar', |
| 609 'inputs': ['<(PRODUCT_DIR)/lib.java/chromium_content.jar'], | 609 'inputs': ['<(PRODUCT_DIR)/lib.java/chromium_content.jar'], |
| 610 'outputs': ['<(PRODUCT_DIR)/content_shell/java/libs/chromium_conte
nt.jar'], | 610 'outputs': ['<(PRODUCT_DIR)/content_shell/java/libs/chromium_conte
nt.jar'], |
| 611 'action': ['cp', '<@(_inputs)', '<@(_outputs)'], | 611 'action': ['cp', '<@(_inputs)', '<@(_outputs)'], |
| 612 }, | 612 }, |
| 613 { | 613 { |
| 614 'action_name': 'copy_and_strip_so', | 614 'action_name': 'copy_and_strip_so', |
| 615 'inputs': ['<(SHARED_LIB_DIR)/libcontent_shell_content_view.so'], | 615 'inputs': ['<(SHARED_LIB_DIR)/libcontent_shell_content_view.so'], |
| 616 'outputs': ['<(PRODUCT_DIR)/content_shell/libs/<(android_app_abi)/
libcontent_shell_content_view.so'], | 616 'outputs': ['<(PRODUCT_DIR)/content_shell/libs/<(android_app_abi)/
libcontent_shell_content_view.so'], |
| 617 'action': [ | 617 'action': [ |
| 618 '<!(/bin/echo -n $STRIP)', | 618 '<(android_strip)', |
| 619 '--strip-unneeded', # All symbols not needed for relocation. | 619 '--strip-unneeded', # All symbols not needed for relocation. |
| 620 '<@(_inputs)', | 620 '<@(_inputs)', |
| 621 '-o', | 621 '-o', |
| 622 '<@(_outputs)', | 622 '<@(_outputs)', |
| 623 ], | 623 ], |
| 624 }, | 624 }, |
| 625 { | 625 { |
| 626 'action_name': 'content_shell_apk', | 626 'action_name': 'content_shell_apk', |
| 627 'inputs': [ | 627 'inputs': [ |
| 628 'shell/android/java/content_shell_apk.xml', | 628 'shell/android/java/content_shell_apk.xml', |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 663 'dependencies': [ | 663 'dependencies': [ |
| 664 'content_java', | 664 'content_java', |
| 665 ], | 665 ], |
| 666 } | 666 } |
| 667 ], | 667 ], |
| 668 }, | 668 }, |
| 669 ], | 669 ], |
| 670 }], # OS=="android" | 670 }], # OS=="android" |
| 671 ] | 671 ] |
| 672 } | 672 } |
| OLD | NEW |