gitout

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

BUILD.gn (671B)


      1 source_set("index_writer") {
      2   sources = [
      3     "index_writer.c",
      4     "index_writer.h",
      5     "repo_index.c",
      6     "repo_index.h",
      7   ]
      8   configs += [ "//:gitout_config" ]
      9   deps = [
     10     "//:format",
     11     "//:utils",
     12   ]
     13   public_deps = [ "//git" ]
     14 }
     15 
     16 source_set("repo_writer") {
     17   sources = [
     18     "commit.c",
     19     "commit.h",
     20     "fileblob.c",
     21     "fileblob.h",
     22     "files.c",
     23     "files.h",
     24     "log.c",
     25     "log.h",
     26     "page.c",
     27     "page.h",
     28     "refs.c",
     29     "refs.h",
     30     "repo_writer.c",
     31     "repo_writer.h",
     32   ]
     33   configs += [ "//:gitout_config" ]
     34   deps = [
     35     "//:format",
     36     "//:utils",
     37     "//writer/atom",
     38     "//writer/cache",
     39   ]
     40   public_deps = [ "//git" ]
     41 }