tor-browser

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

BUILD.gn (975B)


      1 # Copyright (c) 2014 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 
     11 rtc_library("utility") {
     12   if (is_android) {
     13     visibility = [ "*" ]
     14     sources = [
     15       "include/helpers_android.h",
     16       "include/jvm_android.h",
     17       "source/helpers_android.cc",
     18       "source/jvm_android.cc",
     19     ]
     20 
     21     deps = [
     22       "../../api:sequence_checker",
     23       "../../rtc_base:checks",
     24       "../../rtc_base:logging",
     25       "../../rtc_base:platform_thread",
     26       "../../rtc_base:platform_thread_types",
     27       "../../rtc_base/system:arch",
     28     ]
     29 
     30     if (build_with_mozilla) {
     31       sources -= [ "source/jvm_android.cc" ]
     32     }
     33   }
     34 }