blob: db361ff3d4e271f6cef935bb4949c3dacbe30905 [file] [log] [blame]
# Copyright 2019 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/zircon/zx_library.gni")
zx_library("device-protocol-i2c") {
sdk = "source"
sdk_headers = [ "lib/device-protocol/i2c.h" ]
sources = []
public_deps = [
# <lib/device-protocol-i2c/i2c.h> has #include <fuchsia/hardware/i2c/c/banjo.h>
"//sdk/banjo/fuchsia.hardware.i2c:fuchsia.hardware.i2c_banjo_cpp",
# <lib/device-protocol-i2c/i2c.h> has #include <lib/sync/completion.h>
"//zircon/system/ulib/sync",
# <lib/device-protocol-i2c/i2c.h> has #include <zircon/types.h>
"//zircon/system/ulib/zx",
]
}