gitout

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

BUILD.gn (452B)


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