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

Side by Side Diff: content/content_shell.gypi

Issue 20210002: [Android] Sets up a coverage system for java using EMMA (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: TEMP: Fixes several issues, adds some debugging statements Created 7 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
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 678 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698