blob: 97ed48b38a2354672b0160dc0fb47002a2c64538 [file] [log] [blame]
# Copyright 2013 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//build/config/cronet/config.gni")
import("//build/config/nacl/config.gni")
static_library("libevent") {
sources = [
"event-config.h",
"event-internal.h",
"event.c",
"event.h",
"evsignal.h",
"evutil.c",
"evutil.h",
"log.c",
"log.h",
"min_heap.h",
"poll.c",
"select.c",
"signal.c",
"strlcpy-internal.h",
"strlcpy.c",
]
defines = [ "HAVE_CONFIG_H" ]
if (is_cronet_build) {
include_dirs = [ "compat" ]
} else {
include_dirs = []
}
if (is_apple) {
sources += [
"kqueue.c",
"mac/config.h",
"mac/event-config.h",
]
include_dirs += [ "mac" ]
} else if (is_linux || is_chromeos) {
sources += [
"epoll.c",
"linux/config.h",
"linux/event-config.h",
]
include_dirs += [ "linux" ]
} else if (is_android) {
sources += [
"android/config.h",
"android/event-config.h",
"epoll.c",
]
include_dirs += [ "android" ]
}
if (!is_debug) {
configs -= [ "//build/config/compiler:default_optimization" ]
configs += [ "//build/config/compiler:optimize_max" ]
}
configs -= [ "//build/config/compiler:chromium_code" ]
configs += [ "//build/config/compiler:no_chromium_code" ]
}