| Index: tools/android/md5sum/BUILD.gn
|
| diff --git a/tools/android/md5sum/BUILD.gn b/tools/android/md5sum/BUILD.gn
|
| index 0e5b2216a2199e2cea02465638ad581897f799a1..8b7f637fc7dcfd6582b6a49f210b6549f9b205ac 100644
|
| --- a/tools/android/md5sum/BUILD.gn
|
| +++ b/tools/android/md5sum/BUILD.gn
|
| @@ -2,6 +2,8 @@
|
| # Use of this source code is governed by a BSD-style license that can be
|
| # found in the LICENSE file.
|
|
|
| +import("//build/config/android/config.gni")
|
| +
|
| # GYP: //tools/android/md5sum/md5sum.gyp:md5sum
|
| group("md5sum") {
|
| data_deps = [
|
| @@ -23,12 +25,9 @@ executable("md5sum_bin") {
|
| "//build/config/sanitizers:deps",
|
| ]
|
|
|
| - # TODO(GYP)
|
| - #'conditions': [
|
| - #[ 'order_profiling!=0 and OS=="android"', {
|
| - #'dependencies': [ '../../../tools/cygprofile/cygprofile.gyp:cygprofile', ],
|
| - #}],
|
| - #],
|
| + if (is_android && order_profiling) {
|
| + deps += [ "//tools/cygprofile" ]
|
| + }
|
| }
|
|
|
| if (current_toolchain == default_toolchain) {
|
|
|