blob: 778047158911d31110cf14b105188c9b861372f8 [file] [log] [blame]
# Copyright 2016 Google Inc.
#
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
declare_args() {
}
import("../third_party.gni")
third_party("libmicrohttpd") {
public_include_dirs = [ "../externals/microhttpd/src/include" ]
include_dirs = [ "." ]
sources = [
"../externals/microhttpd/src/microhttpd/base64.c",
"../externals/microhttpd/src/microhttpd/connection.c",
"../externals/microhttpd/src/microhttpd/daemon.c",
"../externals/microhttpd/src/microhttpd/internal.c",
"../externals/microhttpd/src/microhttpd/memorypool.c",
"../externals/microhttpd/src/microhttpd/postprocessor.c",
"../externals/microhttpd/src/microhttpd/reason_phrase.c",
"../externals/microhttpd/src/microhttpd/response.c",
]
defines = [ "DAUTH_SUPPORT=1" ]
if (!is_win) {
defines += [
"HAVE_NETINET_IN_H=1",
"HAVE_PTHREAD_H=1",
"HAVE_SYS_SOCKET_H=1",
"MHD_USE_POSIX_THREADS=1",
]
} else {
defines += [
"HAVE_SYS_TYPES_H=1",
"HAVE_TIME_H=1",
"MHD_USE_W32_THREADS=1",
"WINDOWS",
]
}
}