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

Unified Diff: build/android/gyp/write_build_config.py

Issue 2336173003: Fix android depfiles to always list GN's outputs[0] (Closed)
Patch Set: fix cronet_package 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/android/gyp/util/build_utils.py ('k') | build/android/gyp/write_ordered_libraries.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/gyp/write_build_config.py
diff --git a/build/android/gyp/write_build_config.py b/build/android/gyp/write_build_config.py
index d121f7d8e01b556f924ca02fc04da7a199edb3f0..c17bfcb45906717c585940668da6dae9f34eb147 100755
--- a/build/android/gyp/write_build_config.py
+++ b/build/android/gyp/write_build_config.py
@@ -337,7 +337,7 @@ def main(argv):
options.type)
deps = Deps(direct_deps_config_paths)
- all_inputs = deps.AllConfigPaths() + build_utils.GetPythonDependencies()
+ all_inputs = deps.AllConfigPaths()
# Remove other locale resources if there is alternative_locale_resource in
# direct deps.
@@ -662,7 +662,7 @@ def main(argv):
build_utils.WriteJson(config, options.build_config, only_if_changed=True)
if options.depfile:
- build_utils.WriteDepfile(options.depfile, all_inputs)
+ build_utils.WriteDepfile(options.depfile, options.build_config, all_inputs)
if __name__ == '__main__':
« no previous file with comments | « build/android/gyp/util/build_utils.py ('k') | build/android/gyp/write_ordered_libraries.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698