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

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

Issue 2318673003: Revert of GN(Android): Stop specifying depfile under outputs (Closed)
Patch Set: Created 4 years, 3 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
« no previous file with comments | « build/config/android/internal_rules.gni ('k') | chrome/android/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/config/android/rules.gni
diff --git a/build/config/android/rules.gni b/build/config/android/rules.gni
index ee70d9be3547c5bf4590bb6ca37a71cfe03aa99b..9dc5d2ca3325901d8f2abcbad2c99740572d24ba 100644
--- a/build/config/android/rules.gni
+++ b/build/config/android/rules.gni
@@ -49,6 +49,7 @@
android_readelf,
]
outputs = [
+ depfile,
_libraries_list,
]
rebased_binaries = rebase_path([ invoker.binary ], root_build_dir)
@@ -183,6 +184,7 @@
depfile = "$target_gen_dir/$target_name.{{source_name_part}}.d"
sources = invoker.sources
outputs = [
+ depfile,
"${jni_output_dir}/{{source_name_part}}_jni.h",
]
@@ -286,6 +288,7 @@
jar_file,
]
outputs = [
+ depfile,
"${jni_output_dir}/${classname}_jni.h",
]
@@ -388,6 +391,7 @@
sources = invoker.sources
outputs = [
+ depfile,
"$_base_gen_dir/${invoker.package_name}/{{source_name_part}}.java",
]
@@ -397,7 +401,7 @@
"--include-path",
rebase_path(_include_path, root_build_dir),
"--output",
- rebase_path(outputs[0], root_build_dir),
+ rebase_path(outputs[1], root_build_dir),
"--template={{source}}",
]
@@ -472,6 +476,7 @@
"--srcjar=$_rebased_srcjar_path",
] + _rebased_sources
outputs = [
+ depfile,
_srcjar_path,
]
}
@@ -511,6 +516,7 @@
depfile = "$target_gen_dir/$target_name.d"
outputs = [
+ depfile,
invoker.output,
]
@@ -575,6 +581,7 @@
depfile = "$target_gen_dir/$target_name.d"
outputs = [
+ depfile,
_resources_zip,
]
@@ -644,6 +651,7 @@
depfile = "$target_gen_dir/$target_name.d"
outputs = [
+ depfile,
_resources_zip,
]
@@ -1814,6 +1822,7 @@
_build_config,
]
outputs = [
+ depfile,
"${_dist_ijar_path}",
]
data = [
@@ -1943,6 +1952,7 @@
script = "//build/android/gyp/pack_relocations.py"
depfile = "$target_gen_dir/$target_name.d"
outputs = [
+ depfile,
_native_libs_json,
]
@@ -2133,6 +2143,7 @@
]
outputs = [
+ depfile,
_incremental_install_script_path,
]
@@ -2489,6 +2500,7 @@
depfile = "${target_gen_dir}/${target_name}.d"
outputs = [
+ depfile,
srcjar_path,
]
rebased_imports = rebase_path(imports, root_build_dir)
@@ -2559,6 +2571,7 @@
sources = invoker.sources
depfile = "$target_gen_dir/$target_name.d"
outputs = [
+ depfile,
srcjar_path,
]
args = [
« no previous file with comments | « build/config/android/internal_rules.gni ('k') | chrome/android/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698