tor-browser

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

BUILD.gn (391B)


      1 declare_args() {
      2   # These flags are enabled when running gn_processor.py based
      3   # on the gn_target provided in the .json file (for example
      4   # webrtc.json or abseil.json).
      5   build_mozilla_webrtc = false
      6   build_mozilla_absl = false
      7 }
      8 
      9 group("default") {
     10   if (build_mozilla_webrtc) {
     11     deps = [ "libwebrtc:webrtc" ]
     12   }
     13   if (build_mozilla_absl) {
     14     deps = [ "abseil-cpp:absl" ]
     15   }
     16 }