aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/libmicrohttpd/BUILD.gn
blob: 1ba07f6f28f5aa056e1c4674e2a7642d09476e82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# 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",
    ]
  }
}