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

Side by Side Diff: content/content_shell.gypi

Issue 10832295: Remove the dependency on the STRIP env variable for Android (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 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 | « build/common.gypi ('k') | testing/android/generate_native_test.py » ('j') | 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 597 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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 }
OLDNEW
« no previous file with comments | « build/common.gypi ('k') | testing/android/generate_native_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698