skia2/third_party/libmicrohttpd/BUILD.gn
Mike Klein 2148052ebc GN/Win: everything links on my machine.
GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=3267

Change-Id: I9879e3e33104a4eea6e5a87573a1b081dcc5ed54
Reviewed-on: https://skia-review.googlesource.com/3267
Reviewed-by: Mike Klein <mtklein@chromium.org>
Commit-Queue: Mike Klein <mtklein@chromium.org>
2016-10-12 16:39:42 +00:00

48 lines
1.3 KiB
Plaintext

# 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",
"../externals/microhttpd/src/microhttpd/tsearch.c",
]
defines = [ "DAUTH_SUPPORT=1" ]
libs = []
if (is_win) {
sources += [ "../externals/microhttpd/src/platform/w32functions.c" ]
defines += [
"HAVE_SYS_TYPES_H=1",
"HAVE_TIME_H=1",
"MHD_USE_W32_THREADS=1",
"WINDOWS",
]
libs += [ "Ws2_32.lib" ]
} else {
defines += [
"HAVE_NETINET_IN_H=1",
"HAVE_PTHREAD_H=1",
"HAVE_SYS_SOCKET_H=1",
"MHD_USE_POSIX_THREADS=1",
]
}
}