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_should_instrument': 1, |
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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
742 '../tools/imagediff/image_diff.gyp:image_diff#host', | 743 '../tools/imagediff/image_diff.gyp:image_diff#host', |
743 ], | 744 ], |
744 }], | 745 }], |
745 ], | 746 ], |
746 'includes': [ '../build/java_apk.gypi' ], | 747 'includes': [ '../build/java_apk.gypi' ], |
747 }, | 748 }, |
748 ], | 749 ], |
749 }], # OS=="android" | 750 }], # OS=="android" |
750 ] | 751 ] |
751 } | 752 } |
OLD | NEW |