gout

A static git page generator
git clone https://git.bracken.jp/gout.git
Log | Files | Refs | README | LICENSE

BUILD.gn (477B)


      1 source_set("internal") {
      2   visibility = [ ":*" ]
      3   sources = [ "internal.h" ]
      4   configs += [ "//:gout_config" ]
      5   include_dirs = [ "//git" ]
      6 }
      7 
      8 source_set("git") {
      9   sources = [
     10     "commit.c",
     11     "commit.h",
     12     "delta.c",
     13     "delta.h",
     14     "file.c",
     15     "file.h",
     16     "git.c",
     17     "git.h",
     18     "reference.c",
     19     "reference.h",
     20     "repo.c",
     21     "repo.h",
     22   ]
     23   configs += [ "//:gout_config" ]
     24   deps = [
     25     ":internal",
     26     "//:utils",
     27     "//third_party/openbsd",
     28   ]
     29 }