blob: 47e48e9b9927cd25045b67faae928961863a0a18 [file] [log] [blame]
Ben Murdoch097c5b22016-05-18 11:27:45 +01001# Copyright 2016 The Chromium Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5import("//build/shim_headers.gni")
6
7shim_headers("libevent_shim") {
8 root_path = "."
9 headers = [ "event.h" ]
10}
11
12source_set("libevent") {
13 deps = [
14 ":libevent_shim",
15 ]
16 libs = [ "event" ]
17}