tor-browser

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

flac.gn (664B)


      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("system_flac") {
      9   packages = [ "flac" ]
     10 }
     11 
     12 shim_headers("flac_shim") {
     13   root_path = "include"
     14   headers = [
     15     "FLAC/all.h",
     16     "FLAC/assert.h",
     17     "FLAC/callback.h",
     18     "FLAC/export.h",
     19     "FLAC/format.h",
     20     "FLAC/metadata.h",
     21     "FLAC/ordinals.h",
     22     "FLAC/stream_decoder.h",
     23     "FLAC/stream_encoder.h",
     24   ]
     25 }
     26 
     27 source_set("flac") {
     28   deps = [ ":flac_shim" ]
     29   public_configs = [ ":system_flac" ]
     30 }