OLD | NEW |
1 # Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2015 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/dotfile_settings.gni") | 9 import("//build/dotfile_settings.gni") |
10 | 10 |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 # component builds. | 60 # component builds. |
61 is_component_build = false | 61 is_component_build = false |
62 | 62 |
63 mac_sdk_min = "10.12" | 63 mac_sdk_min = "10.12" |
64 | 64 |
65 # WebRTC does not want to switch to C++14 yet. | 65 # WebRTC does not want to switch to C++14 yet. |
66 use_cxx11 = true | 66 use_cxx11 = true |
67 | 67 |
68 # WebRTC relies on Chromium's Android test infrastructure. | 68 # WebRTC relies on Chromium's Android test infrastructure. |
69 use_cxx11_on_android = false | 69 use_cxx11_on_android = false |
| 70 |
| 71 # WebRTC does not provide the gflags dependency. Because libyuv uses it only |
| 72 # for unittests, it can be disabled (see third_party/libyuv/BUILD.gn) |
| 73 libyuv_use_gflags = false |
70 } | 74 } |
OLD | NEW |