tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

libpng.gn (492B)


      1 # Copyright 2016 The Chromium Authors
      2 # Use of this source code is governed by a BSD-style license that can be
      3 # found in the LICENSE file.
      4 
      5 import("//chromium/build/config/linux/pkg_config.gni")
      6 import("//chromium/build/shim_headers.gni")
      7 
      8 pkg_config("libpng_config") {
      9   packages = [ "libpng" ]
     10 }
     11 
     12 shim_headers("libpng_shim") {
     13   root_path = "."
     14   headers = [
     15     "png.h",
     16     "pngconf.h",
     17   ]
     18 }
     19 
     20 source_set("libpng") {
     21   deps = [ ":libpng_shim" ]
     22   public_configs = [ ":libpng_config" ]
     23 }