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 # 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 637 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
648 { | 648 { |
649 # TODO(jrg): Update this action and other jni generators to only | 649 # TODO(jrg): Update this action and other jni generators to only |
650 # require specifying the java directory and generate the rest. | 650 # require specifying the java directory and generate the rest. |
651 'target_name': 'content_shell_jni_headers', | 651 'target_name': 'content_shell_jni_headers', |
652 'type': 'none', | 652 'type': 'none', |
653 'sources': [ | 653 'sources': [ |
654 'shell/android/browsertests_apk/src/org/chromium/content_browsertest
s_apk/ContentBrowserTestsActivity.java', | 654 'shell/android/browsertests_apk/src/org/chromium/content_browsertest
s_apk/ContentBrowserTestsActivity.java', |
655 'shell/android/java/src/org/chromium/content_shell/ShellLayoutTestUt
ils.java', | 655 'shell/android/java/src/org/chromium/content_shell/ShellLayoutTestUt
ils.java', |
656 'shell/android/java/src/org/chromium/content_shell/ShellManager.java
', | 656 'shell/android/java/src/org/chromium/content_shell/ShellManager.java
', |
657 'shell/android/java/src/org/chromium/content_shell/Shell.java', | 657 'shell/android/java/src/org/chromium/content_shell/Shell.java', |
| 658 'shell/android/linker_test_apk/src/org/chromium/content_linker_test_
apk/LinkerTests.java', |
658 ], | 659 ], |
659 'direct_dependent_settings': { | 660 'direct_dependent_settings': { |
660 'include_dirs': [ | 661 'include_dirs': [ |
661 '<(SHARED_INTERMEDIATE_DIR)/content/shell', | 662 '<(SHARED_INTERMEDIATE_DIR)/content/shell', |
662 ], | 663 ], |
663 }, | 664 }, |
664 'variables': { | 665 'variables': { |
665 'jni_gen_package': 'content/shell', | 666 'jni_gen_package': 'content/shell', |
666 }, | 667 }, |
667 'includes': [ '../build/jni_generator.gypi' ], | 668 'includes': [ '../build/jni_generator.gypi' ], |
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
780 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', | 781 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', |
781 '--destination_dir', '<(dest_dir)', | 782 '--destination_dir', '<(dest_dir)', |
782 ], | 783 ], |
783 }, | 784 }, |
784 ], | 785 ], |
785 }, | 786 }, |
786 ], | 787 ], |
787 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" | 788 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" |
788 ] | 789 ] |
789 } | 790 } |
OLD | NEW |