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

Side by Side Diff: ui/ui.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: Cleans up temporary changes, fixes a few more small things 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 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'includes': [ 9 'includes': [
10 'shell_dialogs.gypi', 10 'shell_dialogs.gypi',
(...skipping 949 matching lines...) Expand 10 before | Expand all | Expand 10 after
960 }, 960 },
961 { 961 {
962 'target_name': 'ui_java', 962 'target_name': 'ui_java',
963 'type': 'none', 963 'type': 'none',
964 'variables': { 964 'variables': {
965 'java_in_dir': '../ui/android/java', 965 'java_in_dir': '../ui/android/java',
966 'has_java_resources': 1, 966 'has_java_resources': 1,
967 'R_package': 'org.chromium.ui', 967 'R_package': 'org.chromium.ui',
968 'R_package_relpath': 'org/chromium/ui', 968 'R_package_relpath': 'org/chromium/ui',
969 'java_strings_grd': 'android_ui_strings.grd', 969 'java_strings_grd': 'android_ui_strings.grd',
970 'emma_should_instrument': 1,
970 }, 971 },
971 'dependencies': [ 972 'dependencies': [
972 '../base/base.gyp:base_java', 973 '../base/base.gyp:base_java',
973 'window_open_disposition_java', 974 'window_open_disposition_java',
974 ], 975 ],
975 'includes': [ '../build/java.gypi' ], 976 'includes': [ '../build/java.gypi' ],
976 }, 977 },
977 { 978 {
978 'target_name': 'window_open_disposition_java', 979 'target_name': 'window_open_disposition_java',
979 'type': 'none', 980 'type': 'none',
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
1053 'xcode_settings': { 1054 'xcode_settings': {
1054 'GCC_SYMBOLS_PRIVATE_EXTERN': 'NO', 1055 'GCC_SYMBOLS_PRIVATE_EXTERN': 'NO',
1055 }, 1056 },
1056 }], 1057 }],
1057 ], 1058 ],
1058 }, 1059 },
1059 ], 1060 ],
1060 }], 1061 }],
1061 ], 1062 ],
1062 } 1063 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698