1declare_args() {
2  if (host_os == "win") {
3    # On Windows, path to a directory containing zlib headers and zlib.lib.
4    zlib_path = ""
5  }
6}
7
8declare_args() {
9  # Whether to include code that links against zlib.
10  llvm_enable_zlib = host_os != "win" || zlib_path != ""
11}
12