mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
51 lines
1.2 KiB
Plaintext
51 lines
1.2 KiB
Plaintext
# Copyright 2014 The Chromium Authors. All rights reserved.
|
|
# 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")
|
|
import("//build/symlink.gni")
|
|
|
|
group("md5sum") {
|
|
data_deps = [
|
|
":md5sum_prepare_dist($default_toolchain)",
|
|
":md5sum_bin_host($default_toolchain)",
|
|
]
|
|
|
|
# TODO(cjhopman): Remove once group data_deps are fixed.
|
|
deps = data_deps
|
|
}
|
|
|
|
executable("md5sum_bin") {
|
|
sources = [
|
|
"md5sum.cc",
|
|
]
|
|
deps = [
|
|
"//base",
|
|
"//build/config:exe_and_shlib_deps",
|
|
]
|
|
|
|
# md5sum uses //base, and is built when chrome_apk is. As a consequence,
|
|
# it references the instrumentation function, meaning that //tools/cygprofile
|
|
# is required to link.
|
|
if (is_android && use_order_profiling) {
|
|
deps += [ "//tools/cygprofile" ]
|
|
}
|
|
}
|
|
|
|
if (current_toolchain == default_toolchain) {
|
|
import("//build/config/android/rules.gni")
|
|
|
|
create_native_executable_dist("md5sum_prepare_dist") {
|
|
dist_dir = "$root_build_dir/md5sum_dist"
|
|
binary = "$root_build_dir/md5sum_bin"
|
|
deps = [
|
|
":md5sum_bin",
|
|
]
|
|
}
|
|
|
|
binary_symlink("md5sum_bin_host") {
|
|
binary_label = ":md5sum_bin($host_toolchain)"
|
|
output_name = "md5sum_bin_host"
|
|
}
|
|
}
|