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 678 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
689 'target_name': 'content_shell_java', | 689 'target_name': 'content_shell_java', |
690 'type': 'none', | 690 'type': 'none', |
691 'dependencies': [ | 691 'dependencies': [ |
692 'content_java', | 692 'content_java', |
693 ], | 693 ], |
694 'variables': { | 694 'variables': { |
695 'java_in_dir': '../content/shell/android/java', | 695 'java_in_dir': '../content/shell/android/java', |
696 'has_java_resources': 1, | 696 'has_java_resources': 1, |
697 'R_package': 'org.chromium.content_shell', | 697 'R_package': 'org.chromium.content_shell', |
698 'R_package_relpath': 'org/chromium/content_shell', | 698 'R_package_relpath': 'org/chromium/content_shell', |
| 699 'emma_instrument': '<(emma_coverage)', |
699 }, | 700 }, |
700 'includes': [ '../build/java.gypi' ], | 701 'includes': [ '../build/java.gypi' ], |
701 }, | 702 }, |
702 { | 703 { |
703 # content_shell_apk creates a .jar as a side effect. Any java targets | 704 # content_shell_apk creates a .jar as a side effect. Any java targets |
704 # that need that .jar in their classpath should depend on this target, | 705 # that need that .jar in their classpath should depend on this target, |
705 # content_shell_apk_java. Dependents of content_shell_apk receive its | 706 # content_shell_apk_java. Dependents of content_shell_apk receive its |
706 # jar path in the variable 'apk_output_jar_path'. This target should | 707 # jar path in the variable 'apk_output_jar_path'. This target should |
707 # only be used by targets which instrument content_shell_apk. | 708 # only be used by targets which instrument content_shell_apk. |
708 'target_name': 'content_shell_apk_java', | 709 'target_name': 'content_shell_apk_java', |
(...skipping 17 matching lines...) Expand all Loading... |
726 '../ui/ui.gyp:ui_java', | 727 '../ui/ui.gyp:ui_java', |
727 ], | 728 ], |
728 'variables': { | 729 'variables': { |
729 'apk_name': 'ContentShell', | 730 'apk_name': 'ContentShell', |
730 'manifest_package_name': 'org.chromium.content_shell_apk', | 731 'manifest_package_name': 'org.chromium.content_shell_apk', |
731 'java_in_dir': 'shell/android/shell_apk', | 732 'java_in_dir': 'shell/android/shell_apk', |
732 'resource_dir': 'shell/android/shell_apk/res', | 733 'resource_dir': 'shell/android/shell_apk/res', |
733 'native_lib_target': 'libcontent_shell_content_view', | 734 'native_lib_target': 'libcontent_shell_content_view', |
734 'additional_input_paths': ['<(PRODUCT_DIR)/content_shell/assets/cont
ent_shell.pak'], | 735 'additional_input_paths': ['<(PRODUCT_DIR)/content_shell/assets/cont
ent_shell.pak'], |
735 'asset_location': '<(ant_build_out)/content_shell/assets', | 736 'asset_location': '<(ant_build_out)/content_shell/assets', |
| 737 'emma_instrument': '<(emma_coverage)', |
736 }, | 738 }, |
737 'conditions': [ | 739 'conditions': [ |
738 ['android_webview_build==0', { | 740 ['android_webview_build==0', { |
739 'dependencies': [ | 741 'dependencies': [ |
740 '../tools/imagediff/image_diff.gyp:image_diff#host', | 742 '../tools/imagediff/image_diff.gyp:image_diff#host', |
741 ], | 743 ], |
742 }], | 744 }], |
743 ], | 745 ], |
744 'includes': [ '../build/java_apk.gypi' ], | 746 'includes': [ '../build/java_apk.gypi' ], |
745 }, | 747 }, |
746 ], | 748 ], |
747 }], # OS=="android" | 749 }], # OS=="android" |
748 ] | 750 ] |
749 } | 751 } |
OLD | NEW |