OLD | NEW |
1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. |
2 # | 2 # |
3 # Use of this source code is governed by a BSD-style license | 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 | 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 | 5 # tree. An additional intellectual property rights grant can be found |
6 # in the file PATENTS. All contributing project authors may | 6 # in the file PATENTS. All contributing project authors may |
7 # be found in the AUTHORS file in the root of the source tree. | 7 # be found in the AUTHORS file in the root of the source tree. |
8 | 8 |
9 import("//build/config/arm.gni") | 9 import("//build/config/arm.gni") |
10 import("//build/config/mips.gni") | 10 import("//build/config/mips.gni") |
(...skipping 25 matching lines...) Expand all Loading... |
36 | 36 |
37 # Disable these to not build components which can be externally provided. | 37 # Disable these to not build components which can be externally provided. |
38 rtc_build_expat = true | 38 rtc_build_expat = true |
39 rtc_build_json = true | 39 rtc_build_json = true |
40 rtc_build_libjpeg = true | 40 rtc_build_libjpeg = true |
41 rtc_build_libvpx = true | 41 rtc_build_libvpx = true |
42 rtc_build_libyuv = true | 42 rtc_build_libyuv = true |
43 rtc_build_openmax_dl = true | 43 rtc_build_openmax_dl = true |
44 rtc_build_opus = true | 44 rtc_build_opus = true |
45 rtc_build_ssl = true | 45 rtc_build_ssl = true |
46 rtc_build_vp9 = true | |
47 | 46 |
48 # Disable by default. | 47 # Disable by default. |
49 rtc_have_dbus_glib = false | 48 rtc_have_dbus_glib = false |
50 | 49 |
51 # Enable to use the Mozilla internal settings. | 50 # Enable to use the Mozilla internal settings. |
52 build_with_mozilla = false | 51 build_with_mozilla = false |
53 | 52 |
54 rtc_enable_android_opensl = false | 53 rtc_enable_android_opensl = false |
55 | 54 |
56 # Link-Time Optimizations. | 55 # Link-Time Optimizations. |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
91 # Enable this to use HW H.264 encoder/decoder on iOS PeerConnections. | 90 # Enable this to use HW H.264 encoder/decoder on iOS PeerConnections. |
92 # Enabling this may break interop with Android clients that support H264. | 91 # Enabling this may break interop with Android clients that support H264. |
93 rtc_use_objc_h264 = false | 92 rtc_use_objc_h264 = false |
94 } | 93 } |
95 | 94 |
96 # Make it possible to provide custom locations for some libraries (move these | 95 # Make it possible to provide custom locations for some libraries (move these |
97 # up into declare_args should we need to actually use them for the GN build). | 96 # up into declare_args should we need to actually use them for the GN build). |
98 rtc_libvpx_dir = "//third_party/libvpx_new" | 97 rtc_libvpx_dir = "//third_party/libvpx_new" |
99 rtc_libyuv_dir = "//third_party/libyuv" | 98 rtc_libyuv_dir = "//third_party/libyuv" |
100 rtc_opus_dir = "//third_party/opus" | 99 rtc_opus_dir = "//third_party/opus" |
OLD | NEW |