tor-browser

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

BUILD.gn (1535B)


      1 # Copyright (c) 2017 The WebRTC project authors. All Rights Reserved.
      2 #
      3 # Use of this source code is governed by a BSD-style license
      4 # that can be found in the LICENSE file in the root of the source
      5 # tree. An additional intellectual property rights grant can be found
      6 # in the file PATENTS.  All contributing project authors may
      7 # be found in the AUTHORS file in the root of the source tree.
      8 
      9 import("../../../webrtc.gni")
     10 if (is_android) {
     11   import("//chromium/build/config/android/config.gni")
     12   import("//chromium/build/config/android/rules.gni")
     13 }
     14 
     15 rtc_library("audio_encoder_g711") {
     16   visibility = [ "*" ]
     17   poisonous = [ "audio_codecs" ]
     18   sources = [
     19     "audio_encoder_g711.cc",
     20     "audio_encoder_g711.h",
     21   ]
     22   deps = [
     23     "..:audio_codecs_api",
     24     "../../../api:field_trials_view",
     25     "../../../modules/audio_coding:g711",
     26     "../../../rtc_base:checks",
     27     "../../../rtc_base:safe_conversions",
     28     "../../../rtc_base:safe_minmax",
     29     "../../../rtc_base:stringutils",
     30     "../../../rtc_base/system:rtc_export",
     31     "//third_party/abseil-cpp/absl/strings",
     32   ]
     33 }
     34 
     35 rtc_library("audio_decoder_g711") {
     36   visibility = [ "*" ]
     37   poisonous = [ "audio_codecs" ]
     38   sources = [
     39     "audio_decoder_g711.cc",
     40     "audio_decoder_g711.h",
     41   ]
     42   deps = [
     43     "..:audio_codecs_api",
     44     "../../../api:field_trials_view",
     45     "../../../modules/audio_coding:g711",
     46     "../../../rtc_base:checks",
     47     "../../../rtc_base:safe_conversions",
     48     "../../../rtc_base/system:rtc_export",
     49     "//third_party/abseil-cpp/absl/strings",
     50   ]
     51 }