diff options
author | agrieve <agrieve@chromium.org> | 2015-06-18 09:26:18 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-06-18 16:26:54 +0000 |
commit | afad5c2282c80622b28d112f757fe3d6c06dfa1a (patch) | |
tree | efc0f20e6e96e9ed773780b76961c6a682d5deb2 /build | |
parent | b2afc80c28194355a327afc86a3ac0a4bf9ec692 (diff) | |
download | chromium_src-afad5c2282c80622b28d112f757fe3d6c06dfa1a.zip chromium_src-afad5c2282c80622b28d112f757fe3d6c06dfa1a.tar.gz chromium_src-afad5c2282c80622b28d112f757fe3d6c06dfa1a.tar.bz2 |
Fix invalid depfile generation in generate_split_manifest.py
This caused ninja to crash for incremental builds of ChromeModern.apk
BUG=447152
Review URL: https://codereview.chromium.org/1187903003
Cr-Commit-Position: refs/heads/master@{#335060}
Diffstat (limited to 'build')
-rwxr-xr-x | build/android/gyp/generate_split_manifest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/android/gyp/generate_split_manifest.py b/build/android/gyp/generate_split_manifest.py index 1a312ed..93b5502 100755 --- a/build/android/gyp/generate_split_manifest.py +++ b/build/android/gyp/generate_split_manifest.py @@ -90,7 +90,7 @@ def main(): if options.depfile: build_utils.WriteDepfile( options.depfile, - [main_manifest] + build_utils.GetPythonDependencies()) + [options.main_manifest] + build_utils.GetPythonDependencies()) if __name__ == '__main__': |