blob: 3c973b5c5478e8ac70d3d55d13f820336ff27cec [file] [log] [blame]
# Copyright 2018 The Fuchsia 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/toolchain/variant.gni")
variant("profile") {
common_flags = [
"-fprofile-instr-generate",
"-fcoverage-mapping",
]
if (is_fuchsia) {
# The statically-linked profiling runtime depends on libzircon.
libs = [ "zircon" ]
ldflags = [ "-Wl,-dynamic-linker=profile/ld.so.1" ]
}
}