gout

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

BUILD.gn (767B)


      1 source_set("format") {
      2   sources = [
      3     "format.c",
      4     "format.h",
      5   ]
      6   configs += [ "//:gout_config" ]
      7 }
      8 
      9 source_set("gout_index_srcs") {
     10   sources = [
     11     "gout_index.c",
     12     "gout_index.h",
     13   ]
     14   configs += [ "//:gout_config" ]
     15   deps = [
     16     ":security",
     17     "//src/git",
     18     "//src/writer:index_writer",
     19   ]
     20 }
     21 
     22 source_set("gout_srcs") {
     23   sources = [
     24     "gout.c",
     25     "gout.h",
     26   ]
     27   configs += [ "//:gout_config" ]
     28   deps = [
     29     ":security",
     30     "//src/git",
     31     "//src/writer:repo_writer",
     32   ]
     33 }
     34 
     35 source_set("security") {
     36   sources = [
     37     "security.c",
     38     "security.h",
     39   ]
     40   configs += [ "//:gout_config" ]
     41 }
     42 
     43 source_set("utils") {
     44   sources = [
     45     "utils.c",
     46     "utils.h",
     47   ]
     48   configs += [ "//:gout_config" ]
     49   deps = [ "//third_party/openbsd" ]
     50 }