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

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

Issue 1679623002: Create dist jars only for instrumentation apks; use ijars for them (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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 46186db5bb43be7461760dd3a899434a13f13e66..669f64606f0bd8ffdcc47b6d929b00ba3ed00b39 100644
--- a/build/config/android/rules.gni
+++ b/build/config/android/rules.gni
@@ -1191,6 +1191,8 @@ template("android_java_prebuilt") {
# android_manifest: Path to AndroidManifest.xml.
# android_manifest_dep: Target that generates AndroidManifest (if applicable)
# chromium_code: If true, extra analysis warning/errors will be enabled.
+# create_dist_ijar: Whether to define the "${target_name}_dist_ijar" target
+# (used by instrumentation_test_apk).
# data_deps: List of dependencies needed at runtime. These will be built but
# won't change the generated .apk in any way (in fact they may be built
# after the .apk is).
@@ -1282,11 +1284,6 @@ template("android_apk") {
} else if (defined(invoker.apk_name)) {
_final_apk_path = "$root_build_dir/apks/" + invoker.apk_name + ".apk"
}
- _dist_jar_path_list =
- process_file_template(
- [ _final_apk_path ],
- "$root_build_dir/test.lib.java/{{source_name_part}}.jar")
- _dist_jar_path = _dist_jar_path_list[0]
_final_apk_path_no_ext_list =
process_file_template([ _final_apk_path ],
"{{source_dir}}/{{source_name_part}}")
@@ -1530,14 +1527,13 @@ template("android_apk") {
}
}
- if (_dist_jar_path != "") {
- create_dist_target = "${_template_name}__create_dist_jar"
- _final_deps += [ ":$create_dist_target" ]
-
- # TODO(cjhopman): This is only ever needed to calculate the list of tests to
- # run. See build/android/pylib/instrumentation/test_jar.py. We should be
- # able to just do that calculation at build time instead.
- action(create_dist_target) {
+ # TODO(cjhopman): This is only ever needed to calculate the list of tests to
+ # run. See build/android/pylib/instrumentation/test_jar.py. We should be
+ # able to just do that calculation at build time instead.
+ if (defined(invoker.create_dist_ijar) && invoker.create_dist_ijar) {
+ _dist_ijar_path = "$root_build_dir/test.lib.java/" +
+ get_path_info(_final_apk_path, "name") + ".jar"
+ action("${_template_name}_dist_ijar") {
script = "//build/android/gyp/create_dist_jar.py"
depfile = "$target_gen_dir/$target_name.d"
inputs = [
@@ -1545,13 +1541,14 @@ template("android_apk") {
]
outputs = [
depfile,
- _dist_jar_path,
+ "${_dist_ijar_path}",
]
args = [
"--depfile",
rebase_path(depfile, root_build_dir),
"--output",
- rebase_path(_dist_jar_path, root_build_dir),
+ rebase_path("${_dist_ijar_path}", root_build_dir),
+ "--use-ijars",
jbudorick 2016/02/08 16:24:12 also, why is this GN-only?
agrieve 2016/02/08 16:42:01 When I first added ijars, I was too lazy to port t
jbudorick 2016/02/08 16:59:11 assuming you mean dist jars here instead of ijars
"--inputs=@FileArg($_rebased_build_config:dist_jar:dependency_jars)",
]
inputs += [ _jar_path ]
@@ -1962,6 +1959,7 @@ template("instrumentation_test_apk") {
data_deps += invoker.additional_apks
}
+ create_dist_ijar = true
run_findbugs =
defined(invoker.run_findbugs) && invoker.run_findbugs &&
(defined(invoker.java_files) || defined(invoker.DEPRECATED_java_in_dir))
@@ -1971,6 +1969,9 @@ template("instrumentation_test_apk") {
public_deps = [
":$_apk_target_name",
":$_test_runner_target_name",
+
+ # Required by test runner to enumerate test list.
+ ":${_apk_target_name}_dist_ijar",
]
}
}
« build/android/gyp/util/build_utils.py ('K') | « build/android/gyp/util/build_utils.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698