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

Side by Side Diff: content/content_shell.gypi

Issue 23717023: Android: Add chrome-specific dynamic linker. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address jochen's nits. Created 7 years, 2 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
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 # The "19" is so that sites that sniff for version think that this is 8 # The "19" is so that sites that sniff for version think that this is
9 # something reasonably current; the "77.34.5" is a hint that this isn't a 9 # something reasonably current; the "77.34.5" is a hint that this isn't a
10 # standard Chrome. 10 # standard Chrome.
(...skipping 638 matching lines...) Expand 10 before | Expand all | Expand 10 after
649 { 649 {
650 # TODO(jrg): Update this action and other jni generators to only 650 # TODO(jrg): Update this action and other jni generators to only
651 # require specifying the java directory and generate the rest. 651 # require specifying the java directory and generate the rest.
652 'target_name': 'content_shell_jni_headers', 652 'target_name': 'content_shell_jni_headers',
653 'type': 'none', 653 'type': 'none',
654 'sources': [ 654 'sources': [
655 'shell/android/browsertests_apk/src/org/chromium/content_browsertest s_apk/ContentBrowserTestsActivity.java', 655 'shell/android/browsertests_apk/src/org/chromium/content_browsertest s_apk/ContentBrowserTestsActivity.java',
656 'shell/android/java/src/org/chromium/content_shell/ShellLayoutTestUt ils.java', 656 'shell/android/java/src/org/chromium/content_shell/ShellLayoutTestUt ils.java',
657 'shell/android/java/src/org/chromium/content_shell/ShellManager.java ', 657 'shell/android/java/src/org/chromium/content_shell/ShellManager.java ',
658 'shell/android/java/src/org/chromium/content_shell/Shell.java', 658 'shell/android/java/src/org/chromium/content_shell/Shell.java',
659 'shell/android/linker_test_apk/src/org/chromium/content_linker_test_ apk/LinkerTests.java',
659 ], 660 ],
660 'direct_dependent_settings': { 661 'direct_dependent_settings': {
661 'include_dirs': [ 662 'include_dirs': [
662 '<(SHARED_INTERMEDIATE_DIR)/content/shell', 663 '<(SHARED_INTERMEDIATE_DIR)/content/shell',
663 ], 664 ],
664 }, 665 },
665 'variables': { 666 'variables': {
666 'jni_gen_package': 'content/shell', 667 'jni_gen_package': 'content/shell',
667 }, 668 },
668 'includes': [ '../build/jni_generator.gypi' ], 669 'includes': [ '../build/jni_generator.gypi' ],
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
781 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', 782 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb',
782 '--destination_dir', '<(dest_dir)', 783 '--destination_dir', '<(dest_dir)',
783 ], 784 ],
784 }, 785 },
785 ], 786 ],
786 }, 787 },
787 ], 788 ],
788 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" 789 }], # OS=="win" and fastbuild==0 and target_arch=="ia32"
789 ] 790 ]
790 } 791 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698