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

Side by Side Diff: chrome/chrome.gyp

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 'variables': { 5 'variables': {
6 'chromium_code': 1, 6 'chromium_code': 1,
7 7
8 # Define the common dependencies that contain all the actual 8 # Define the common dependencies that contain all the actual
9 # Chromium functionality. This list gets pulled in below by 9 # Chromium functionality. This list gets pulled in below by
10 # the link of the actual chrome (or chromium) executable on 10 # the link of the actual chrome (or chromium) executable on
(...skipping 1077 matching lines...) Expand 10 before | Expand all | Expand 10 after
1088 ], 1088 ],
1089 'variables': { 1089 'variables': {
1090 'java_in_dir': '../chrome/android/java', 1090 'java_in_dir': '../chrome/android/java',
1091 'has_java_resources': 1, 1091 'has_java_resources': 1,
1092 'R_package': 'org.chromium.chrome', 1092 'R_package': 'org.chromium.chrome',
1093 'R_package_relpath': 'org/chromium/chrome', 1093 'R_package_relpath': 'org/chromium/chrome',
1094 'java_strings_grd': 'android_chrome_strings.grd', 1094 'java_strings_grd': 'android_chrome_strings.grd',
1095 # Include xml string files generated from generated_resources.grd 1095 # Include xml string files generated from generated_resources.grd
1096 'res_extra_dirs': ['<(SHARED_INTERMEDIATE_DIR)/chrome/java/res'], 1096 'res_extra_dirs': ['<(SHARED_INTERMEDIATE_DIR)/chrome/java/res'],
1097 'res_extra_files': ['<!@pymod_do_main(grit_info <@(grit_defines) --o utputs "<(SHARED_INTERMEDIATE_DIR)/chrome" app/generated_resources.grd)'], 1097 'res_extra_files': ['<!@pymod_do_main(grit_info <@(grit_defines) --o utputs "<(SHARED_INTERMEDIATE_DIR)/chrome" app/generated_resources.grd)'],
1098 'emma_should_instrument': 1,
1098 }, 1099 },
1099 'includes': [ 1100 'includes': [
1100 '../build/java.gypi', 1101 '../build/java.gypi',
1101 ], 1102 ],
1102 }, 1103 },
1103 ], # 'targets' 1104 ], # 'targets'
1104 'includes': [ 1105 'includes': [
1105 'chrome_android.gypi', 1106 'chrome_android.gypi',
1106 ]}, # 'includes' 1107 ]}, # 'includes'
1107 ], # OS=="android" 1108 ], # OS=="android"
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
1199 'sources': [ 1200 'sources': [
1200 'service/cloud_print/print_system_cups.cc', 1201 'service/cloud_print/print_system_cups.cc',
1201 ], 1202 ],
1202 }], 1203 }],
1203 ], 1204 ],
1204 }, 1205 },
1205 ], 1206 ],
1206 }], 1207 }],
1207 ], # 'conditions' 1208 ], # 'conditions'
1208 } 1209 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698