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/features.gni") | 10 import("//build/config/features.gni") |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 # A second declare_args block, so that declarations within it can | 113 # A second declare_args block, so that declarations within it can |
114 # depend on the possibly overridden variables in the first | 114 # depend on the possibly overridden variables in the first |
115 # declare_args block. | 115 # declare_args block. |
116 declare_args() { | 116 declare_args() { |
117 # Include the iLBC audio codec? | 117 # Include the iLBC audio codec? |
118 rtc_include_ilbc = !(build_with_chromium || build_with_mozilla) | 118 rtc_include_ilbc = !(build_with_chromium || build_with_mozilla) |
119 } | 119 } |
120 | 120 |
121 # Make it possible to provide custom locations for some libraries (move these | 121 # Make it possible to provide custom locations for some libraries (move these |
122 # up into declare_args should we need to actually use them for the GN build). | 122 # up into declare_args should we need to actually use them for the GN build). |
123 rtc_libvpx_dir = "//third_party/libvpx_new" | 123 rtc_libvpx_dir = "//third_party/libvpx" |
124 rtc_libyuv_dir = "//third_party/libyuv" | 124 rtc_libyuv_dir = "//third_party/libyuv" |
125 rtc_opus_dir = "//third_party/opus" | 125 rtc_opus_dir = "//third_party/opus" |
OLD | NEW |