blob: 8fe0c97e7ac0a8c0cecd923cbf22b08d99c0a3e1 [file] [log] [blame]
# Copyright 2021 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.
static_library("buildid") {
sources = [ "buildid.h" ]
if (current_os == "linux") {
sources += [ "linux.cc" ]
} else if (current_os == "mac") {
sources += [ "macos.cc" ]
}
cflags = [ "-fPIC" ]
configs += [
# TODO(fxbug.dev/58162): delete the below and fix compiler warnings
"//build/config:Wno-conversion",
]
}