| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 # GYP: //tools/android/md5sum/md5sum.gyp:md5sum | 5 # GYP: //tools/android/md5sum/md5sum.gyp:md5sum |
| 6 group("md5sum") { | 6 group("md5sum") { |
| 7 datadeps = [ | 7 datadeps = [ |
| 8 ":md5sum_prepare_dist($default_toolchain)", | 8 ":md5sum_prepare_dist($default_toolchain)", |
| 9 ":md5sum_copy_host($host_toolchain)", | 9 ":md5sum_copy_host($host_toolchain)", |
| 10 ] | 10 ] |
| 11 | 11 |
| 12 # TODO(cjhopman): Remove once group datadeps are fixed. | 12 # TODO(cjhopman): Remove once group datadeps are fixed. |
| 13 deps = datadeps | 13 deps = datadeps |
| 14 } | 14 } |
| 15 | 15 |
| 16 # GYP: //tools/android/md5sum/md5sum.gyp:md5sum_bin_device (and md5sum_bin_host) | 16 # GYP: //tools/android/md5sum/md5sum.gyp:md5sum_bin_device (and md5sum_bin_host) |
| 17 executable("md5sum_bin") { | 17 executable("md5sum_bin") { |
| 18 sources = [ | 18 sources = [ |
| 19 "md5sum.cc", | 19 "md5sum.cc", |
| 20 ] | 20 ] |
| 21 deps = [ | 21 deps = [ |
| 22 "//base", | 22 "//base", |
| 23 "//build/config/sanitizers:deps", |
| 23 ] | 24 ] |
| 24 | 25 |
| 25 # TODO(GYP) | 26 # TODO(GYP) |
| 26 #'conditions': [ | 27 #'conditions': [ |
| 27 #[ 'order_profiling!=0 and OS=="android"', { | 28 #[ 'order_profiling!=0 and OS=="android"', { |
| 28 #'dependencies': [ '../../../tools/cygprofile/cygprofile.gyp:cygprofile', ], | 29 #'dependencies': [ '../../../tools/cygprofile/cygprofile.gyp:cygprofile', ], |
| 29 #}], | 30 #}], |
| 30 #], | 31 #], |
| 31 } | 32 } |
| 32 | 33 |
| (...skipping 25 matching lines...) Expand all Loading... |
| 58 deps = [ | 59 deps = [ |
| 59 ":md5sum_bin", | 60 ":md5sum_bin", |
| 60 ] | 61 ] |
| 61 args = [ | 62 args = [ |
| 62 "-f", | 63 "-f", |
| 63 rebase_path(_src, root_build_dir), | 64 rebase_path(_src, root_build_dir), |
| 64 rebase_path(_target, root_build_dir), | 65 rebase_path(_target, root_build_dir), |
| 65 ] | 66 ] |
| 66 } | 67 } |
| 67 } | 68 } |
| OLD | NEW |