Chromium Code Reviews| Index: build/android/gyp/apkbuilder.py |
| diff --git a/build/android/gyp/apkbuilder.py b/build/android/gyp/apkbuilder.py |
| index 82ac496ed970039ed34bd51af0e06c64b88d91f4..41b54c0612e15b7bf214e08216a19ef429119493 100755 |
| --- a/build/android/gyp/apkbuilder.py |
| +++ b/build/android/gyp/apkbuilder.py |
| @@ -190,7 +190,7 @@ def main(args): |
| if options.secondary_native_libs: |
| secondary_native_libs = sorted(options.secondary_native_libs) |
| input_paths += secondary_native_libs |
| - depfile_deps += secondary_native_libs |
| + depfile_deps += list(secondary_native_libs) |
|
agrieve
2016/09/08 01:02:15
Does this do anything?
michaelbai
2016/09/08 18:52:50
No difference, I wanted to match the native_libs,
|
| if options.dex_file: |
| input_paths.append(options.dex_file) |