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

Unified Diff: build/config/android/rules.gni

Issue 1647353002: Use gn_helpers to [se]serialize GN lists. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@python_impl
Patch Set: more Created 4 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 side-by-side diff with in-line comments
Download patch
Index: build/config/android/rules.gni
diff --git a/build/config/android/rules.gni b/build/config/android/rules.gni
index facedb5f8404f2ea19fabbaae7f96ac46aef29d7..7c7f251c9a2aaa7b97c5b30cda46e58c7412a260 100644
--- a/build/config/android/rules.gni
+++ b/build/config/android/rules.gni
@@ -1195,7 +1195,7 @@ if (enable_java_templates) {
# ":foo_generated_enum"
# ]
# jar_excluded_patterns = [
- # "*/FooService.class", "*/FooService##*.class"
+ # "*/FooService.class", "*/FooService\$*.class"
# ]
# }
template("java_library") {
@@ -1292,7 +1292,7 @@ if (enable_java_templates) {
# ":foo_generated_enum"
# ]
# jar_excluded_patterns = [
- # "*/FooService.class", "*/FooService##*.class"
+ # "*/FooService.class", "*/FooService\$*.class"
# ]
# }
template("android_library") {
@@ -1315,9 +1315,9 @@ if (enable_java_templates) {
}
jar_excluded_patterns += [
"*/R.class",
- "*/R##*.class",
+ "*/R\$*.class",
"*/Manifest.class",
- "*/Manifest##*.class",
+ "*/Manifest\$*.class",
]
}
}
« no previous file with comments | « build/android/incremental_install/create_install_script.py ('k') | components/cronet/tools/extract_from_jars.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698