| # 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" ] | |
| } | |
| cflags = [ "-fPIC" ] | |
| configs += [ | |
| # TODO(https://fxbug.dev/42136089): delete the below and fix compiler warnings | |
| "//build/config:Wno-conversion", | |
| ] | |
| } |