| Index: tools/android/md5sum/BUILD.gn
|
| diff --git a/tools/android/md5sum/BUILD.gn b/tools/android/md5sum/BUILD.gn
|
| index 9b458c7eeac3591691c3c94d2ce7cc6c231cd009..0f520401eedff38691926eacdc78a62ab39bafd1 100644
|
| --- a/tools/android/md5sum/BUILD.gn
|
| +++ b/tools/android/md5sum/BUILD.gn
|
| @@ -39,6 +39,9 @@ if (current_toolchain == default_toolchain) {
|
| create_native_executable_dist("md5sum_prepare_dist") {
|
| dist_dir = "$root_build_dir/md5sum_dist"
|
| binary = "$root_build_dir/exe.stripped/md5sum_bin"
|
| + deps = [
|
| + ":md5sum_bin",
|
| + ]
|
| }
|
| } else {
|
| # GYP: //tools/android/md5sum/md5sum.gyp:md5sum_bin_host
|
| @@ -49,5 +52,8 @@ if (current_toolchain == default_toolchain) {
|
| outputs = [
|
| "$root_build_dir/md5sum_bin_host",
|
| ]
|
| + deps = [
|
| + ":md5sum_bin",
|
| + ]
|
| }
|
| }
|
|
|